Object Clone in Java

Published: 05 January 2022
on channel: Yashwant Pathak
70
13

The object cloning is a way to create an exact copy of an object. For this purpose, the clone() method of an object class is used to clone an object. The Cloneable interface must be implemented by a class whose object clone is to create. If we do not implement Cloneable interface, clone() method generates CloneNotSupportedException.

The clone() method saves the extra processing task for creating the exact copy of an object. If we perform it by using the new keyword, it will take a lot of processing to be performed, so we can use object cloning.
ava keeps references of objects. If two reference are pointing to same object then modification to one reference will reflect in another reference as well. To prevent such situation, cloning is required. In cloning, a copy of object is to be created and used to that both objects can be modified independently. This is one of the major advantages of cloning.
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();
}
}
}
#java object#object clone in java


On this page of the site you can watch the video online Object Clone in Java with a duration of hours minute second in good quality, which was uploaded by the user Yashwant Pathak 05 January 2022, share the link with friends and acquaintances, this video has already been watched 70 times on youtube and it was liked by 13 viewers. Enjoy your viewing!