填充容器
public static void main(String[] args) {
List<String> strList=
new ArrayList<String>(Collections.nCopies(
4,
"Hello"));
System.
out.println(strList);
Collections.fill(strList,
"World");
System.
out.println(strList);
}
[Hello, Hello, Hello, Hello]
[World, World, World, World]