System.arraycopy(), Arrays.copyOf()
System.arraycopy(), Arrays.copyOf() StringBuilder의 append() 메서드를 살펴보던중 다음과 같은 메서드를 발견하게 되었다. 배열을 복사하는 메서드는 System.arraycopy() 밖에 몰랐기 때문에 Arrays.copyOf() 메서드는 System.arraycopy()와 어떻게 다른지 인터넷을 찾아봤다. int[] arr = {1,2,3,4,5}; int[] sysCopyArr = new int[10]; System.arraycopy(arr, 0, sysCopyArr, 2,5); // [0, 0, 1, 2, 3, 4, 5, 0, 0, 0] System.out.println(Arrays.toString(sysCopyArr)); int[] copyOfArr = ..
2020. 6. 11.