1. cloneclone() 메소드는 객체를 복제할 때 사용됩니다. class Person implements Cloneable { String name; Person(String name) { this.name = name; } @Override protected Object clone() throws CloneNotSupportedException { return super.clone(); }}public class CloneExample { public static void main(String[] args) { try { Person p1 = new Person("Alice"); ..