ArrayList に 100 個 (現実的にはそれ以上) の文字列を追加しようとしています。各文字列を個別に追加する代わりに、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
}
各文字列をリストに追加する方法を誰でも特定できますか?
ありがとうございました