public class Test {

public static void main(String[] args) {

char original[] = "0123456789".toCharArray();

char copy[] = "abcdefghi".toCharArray();

//System.arraycopy(오리지날 배열 이름, 오리지날 배열 위치, 카피 배열 이름, 카피 배열의 위치, 길이);

//original 배열의 1~3 (길이가 3) 을 copy 배열의 cde 자리


에 복사

System.arraycopy(original, 1, copy, 2, 3);

System.out.println(copy);

}

}




기본형 뿐만 아니라, 모든 객체가 복사 가능합니다.

+ Recent posts