Java - ArrayList.clone() 사용 방법 및 예제

ArrayList의 clone() 메소드는 ArrayList의 복사본을 리턴합니다. 내부의 아이템들은 얕은복사로 생성됩니다.

1. ArrayList.clone()

인자는 없고, ArrayList의 복사본을 리턴합니다. 아래 코드를 보시는 것처럼 새로운 ArrayList를 생성하고, 리스트의 아이템들을 깊은 복사를 하지 않고 얕은 복사(shallow copy)로 새로운 ArrayList에 set합니다.

public Object clone() {
    try {
        ArrayList<?> v = (ArrayList<?>) super.clone();
        v.elementData = Arrays.copyOf(elementData, size);
        v.modCount = 0;
        return v;
    } catch (CloneNotSupportedException e) {
        // this shouldn't happen, since we are Cloneable
        throw new InternalError(e);
    }
}

자세한 코드는 JDK8 ArrayList.java를 참고해주세요

2. ArrayList.clone() 예제

아래 코드는 fruits를 clone하여 두개의 리스트를 출력하는 예제입니다. String 객체라서 표면적으로 드러나진 않지만 내부적으로 얕은복사가 수행되었습니다.

String[] fruitsArray = {"apple", "banana", "kiwi", "mango", "blackberry"};
ArrayList<String> fruits = new ArrayList<>(Arrays.asList(fruitsArray));
System.out.println("fruits: " + fruits);

ArrayList<String> clone = (ArrayList<String>) fruits.clone();
System.out.println("clone: " + clone);

결과

fruits: [apple, banana, kiwi, mango, blackberry]
clone: [apple, banana, kiwi, mango, blackberry]

참고

Loading script...

Related Posts

codechachaCopyright ©2019 codechacha