共计 427 个字符,预计需要花费 2 分钟才能阅读完成。
在 Java 中,可以使用以下方法来初始化一个 ArrayList:
- 使用 ArrayList 的构造方法:
ArrayList<String> list = new ArrayList<>();
- 使用 Arrays.asList() 方法:
ArrayList<String> list = new ArrayList<>(Arrays.asList("apple", "banana", "orange"));
- 使用 Collections.addAll() 方法:
ArrayList<String> list = new ArrayList<>();
Collections.addAll(list, "apple", "banana", "orange");
- 使用 Collections.nCopies() 方法(初始化指定数量的相同元素):
ArrayList<String> list = new ArrayList<>(Collections.nCopies(3, "apple"));
丸趣 TV 网 – 提供最优质的资源集合!
正文完