(자바) 배열값 복사 & 복제 이것은 참조값이 변하지 않으면서 오직 instance 값이 변하는 것이다. public class Revising{ public static void main(String[] args){ int[] a = {1, 2, 3, 4, 5}; int[] b = new int[5]; for(int i=0; i java/자료형 2019.04.24