共计 603 个字符,预计需要花费 2 分钟才能阅读完成。
Java 中给 List 赋值的方法有以下几种:
- 使用 add() 方法逐个添加元素:
List<String> list = new ArrayList<>();
list.add(" 元素 1 ");
list.add(" 元素 2 ");
list.add(" 元素 3 ");
- 使用数组初始化 List:
String[] array = {" 元素 1 ", " 元素 2 ", " 元素 3 "};
List<String> list = Arrays.asList(array);
- 使用 Collections 工具类的 addAll() 方法将另一个 Collection 中的元素添加到 List 中:
List<String> list = new ArrayList<>();
Collection<String> collection = new ArrayList<>();
collection.add(" 元素 1 ");
collection.add(" 元素 2 ");
collection.add(" 元素 3 ");
Collections.addAll(list, collection);
- 使用 Collections 工具类的 nCopies() 方法创建指定数量的相同元素,并赋值给 List:
List<String> list = new ArrayList<>(Collections.nCopies(3, " 元素 "));
以上是常用的给 List 赋值的方法,根据具体需求选择合适的方法进行赋值操作。
丸趣 TV 网 – 提供最优质的资源集合!
正文完