Clone 썸네일형 리스트형 Clone Clone 메소드 사용 class Car implements Cloneable{ String model; String company; public Car(String model, String company) { super(); this.model = model; this.company = company; } public Car() {} @Override public String toString() { return "Car [model=" + model + ", company=" + company + "]"; } public void test() throws CloneNotSupportedException{ // clone 사용 작성 : protected ; 상속클래스 사용 Car copy = (Car)(.. 더보기 이전 1 다음