複数配列の結合
複数の配列を 1 つの配列に結合する方法です。String の場合の例を下に書きます。
ソース記述例
String[] fruits1 = new String[]{"apple", "orange", "grape"};
String[] fruits2 = new String[]{"plum", "melon"};
String[] allFruits = new String[fruits1.length + fruits2.length];
System.arraycopy(fruits1, 0, allFruits, 0, fruits1.length);
System.arraycopy(fruits2, 0, allFruits, fruits1.length, fruits2.length);
|