ArrayList shallow copy, deep copy - java


ArrayList shallow copy, deep copy - java

https://hianna.tistory.com/567 [Java] ArrayList 복사하기 (Shallow Copy, Deep Copy) ArrayList 객체를 복사하는 방법 2가지를 소개합니다. ArrayList 복사하기 - clone() - Shallow Copy ArrayList 복사하기 - Deep Copy 1. ArrayList 복사하기 - clone() - Shallow Copy public Object clone() 보통 ArrayList를 복사할 때, ArrayList의 clone() 메소드를 사용합니다. 이 메소드는 ArrayList 객체를 shallow copy한 복사본을 리턴합니다. 예제 1 - clone() 후, ArrayList의 데이터 변경... hianna.tistory.com...



원문링크 : ArrayList shallow copy, deep copy - java