我知道这很容易,可以用 2 行代码完成,但我很想知道是否存在任何这样的函数我有一个 int 告诉我列表的大小,我需要创建一个列表说
List<Integer> intList;
我可以通过轻松迭代大小来创建它
for(int i=1 ; i <= size; i++) // started with 1 as i want it from 1
{
fill list
}
但我只是在想,好像在 Collection API 或 Apache common 中存在任何这样的方法,我可以通过大小来获取给定大小的 List
编辑
可能我无法以适当的方式提出问题,我想填写我的清单,说如果 size=4 比我想的要多
Integer=1
Integer=2
Integer=3
Integer=4
而不是一个大小为 4 的空列表
我知道问题没有多大意义,但最好还是澄清你的问题