Copy An Object Java Code Example

Snippet 1

  int serial = 123;
MyObject thing1 = new MyObject(serial, "Name");
thing1.addDescription("The object I plan on cloning");

MyObject thing2 = thing1.clone();



@Override
public Object clone() throws CloneNotSupportedException {
 MyObject clone = new MyObject(this.serial, this.name); // All items were immutable
   clone.description = new String(this.description); // If a field is not immutable
   return clone;
} 

Similar Snippets


Creating Java Main Method Code Example – java

Create Copy Of Array From Another Array Code Example – java

Find Duplicates In Arraylist Java Code Example – java

Java Creat A Folder Code Example – java

Firestore Find Doc And Set Data Code Example – java

Copyright © Code Fetcher 2020

 

 

Published

Leave a comment

Your email address will not be published. Required fields are marked *