Clean Code that Works.

http://java.sun.com/j2se/1.4.2/docs/api/java/lang/System.html


배열 카피하는 메소드.

arraycopy(Object src, int srcPos, Object dest, int destPos, int length)
          Copies an array from the specified source array, beginning at the specified position, to the specified position of the destination array.

요런다... 무슨말인고 하니..

src 의 srcPos 부터 desPos의 length 길이 만큼 dest 배열에다가 복사한다는 뜻.