method description example System.arraycopy() 배열을 복사하는 메소드 nt[] arr = {1,2,3,4}; int[] arr2 = {0,0,0,0,0}; System.arraycopy(arr, 0, arr2, 1,4); Integer.parseInt() 문자열을 정수로 변환하는 메소드 정수로 바꿀 수 없는 문자열은 NumberFormatException 예외 발생 ex) int num = Integer.parseInt("100");