Arrays (1) 썸네일형 리스트형 [Java] System.arraycopy 와 Array.copyOfRange Java에는 배열을 복사하는 여러가지 방법들이 있는데 내가 아는 방법들에 대해 간단하게 정리해보려 합니다. Java 배열 복사 방법 System.arraycopy Arrays.copyOf Arrays.copyOfRange for문으로 hard copy System.arraycopy // System.java @HotSpotIntrinsicCandidate public static native void arraycopy(Object src, int srcPos, Object dest, int destPos, int length); System.java의 arraycopy메소드를 확인하면 다음과 같이 되어있습니다. 변수들을 살펴보면 src : 복사하고자 하는 원본 배열 srcPos : 원본 배열에서 복사할 .. 이전 1 다음