aspose file tools
The moose likes Beginning Java and the fly likes Clone concept doubt Big Moose Saloon
  Search | Java FAQ | Recent Topics
Register / Login


Win a copy of The Mikado Method this week in the Agile and other Processes forum!
JavaRanch » Java Forums » Java » Beginning Java
Reply Bookmark "Clone concept doubt" Watch "Clone concept doubt" New topic
Author

Clone concept doubt

akshitha Akki
Greenhorn

Joined: Aug 03, 2012
Posts: 24




Here when the p1.clone() call is made, it checks whether the Objects' class is implementing Cloneable interface, then comes the actual call definition where the return super.clone() is made.
Can some brief out why it is made as super.clone() and how will it make the cloning of the object.
Suresh Sajja
Ranch Hand

Joined: May 12, 2009
Posts: 34

Invoking super.clone will eventually invoke Object’s clone method,
Object's clone method first verifies if class of this object implements cloneable, then creates new instance of the class and initializes all the fields with same values as in original object.


~Suresh
 
I agree. Here's the link: http://ej-technologies/jprofiler - if it wasn't for jprofiler, we would need to run our stuff on 16 servers instead of 3.
 
subject: Clone concept doubt
 
Similar Threads
simple........
Interview question
Why PROTECTED method in class Object?
Object cast in Prototype pattern
Clone an object and compare it with the oldest one