자바기초2008. 10. 31. 17:29
int[] source = new int[]{5,4,6,7,9,9};
int[] target = {100,200,300,400,500,600,700};
System.arraycopy(source, 2, target, 3, 4);
// 소스의 2번째부터 target의 3번째 위치부터... 4개를 복사한다.

또는

int[] target = (int[])source.clone();
// clone()을 이용한 메모리 복사
Posted by 아마데우스