「java」Arrays.copyOfで配列から配列へのコピーのサンプル

サンプルコード
int[] arr = {1,2,3,4,5};
int[] copiedArr = Arrays.copyOf(arr, 10); //10 the the length of the new array
System.out.println(Arrays.toString(copiedArr));

copiedArr = Arrays.copyOf(arr, 3);
System.out.println(Arrays.toString(copiedArr));

実行結果
[1, 2, 3, 4, 5, 0, 0, 0, 0, 0]
[1, 2, 3]

Java

Posted by arkgame