对象克隆是创建对象精确副本的一种方法。 为此,使用对象类的clone()方法来克隆对象。 Cloneable接口必须由要创建其对象克隆的类来实现。如果我们没有实现 Cloneable 接口,clone() 方法会生成 CloneNotSupportedException。
clone() 方法节省了创建精确副本的额外处理任务。目的。如果我们使用new关键字来执行,将会需要执行大量的处理,所以我们可以使用对象克隆。
protected Object clone() throws CloneNotSupportedException
public class EmployeeTest implements Cloneable { int id; String name = ""; Employee(int id, String name) { this.id = id; this.name = name; } public Employee clone() throws CloneNotSupportedException { return (Employee)super.clone(); } public static void main(String[] args) { Employee emp = new Employee(115, "Raja"); System.out.println(emp.name); try { Employee emp1 = emp.clone(); System.out.println(emp1.name); } catch(CloneNotSupportedException cnse) { cnse.printStackTrace(); } } }
Raja Raja
以上是在Java中,对象克隆的用途是什么?的详细内容。更多信息请关注PHP中文网其他相关文章!