我正在尝试将 100 个(实际上更多)字符串添加到 ArrayList。我如何使用 for 循环之类的东西一次添加它们,而不是单独添加每个字符串。下面的代码是一个例子。
ArrayList<String> strings = new ArrayList();
String s1 = "Apple";
String s2 = "Banana";
String s3 = "Pear"
/*
More Strings created until the 100th String
.
.
.
*/
String s100 = "Kiwi";
//for loop to try add each String to List
for(int i=0; i<100; i++)
{
//Code to add each String to the arraylist
}
谁能确定我如何将每个字符串添加到列表中?
非常感谢