Forums Register Login

clone method

+Pie Number of slices to send: Send
What exactly clone method of array does?Can anybody explain with an example?
Thanks
Veena
+Pie Number of slices to send: Send
The clone method works the same for any object. It checks that the class of the object on which was invoked implements Cloneable, otherwise throws CloneNotSupportedException. Then creates another object of the same class as "this" object, and copies the content of its instance fields to the clone object. If the field is a primitive the value of such variable is copied. If the field is of reference type, again the content of such variable is copied. The content of a variable that points to an object is the address of that object, a pointer to it. Thus the both the clone object, anf the cloned one share the same non-primitive fields. Because the objects pointed to by such fields are not copied themselves, but only the pointers to them.
The fields of an array object are its length and elements hold by the array. If these elements are primitives the two objects receive separate values of such elements. However if the elements are objects the clone and cloned objects share them as I explained above.
Read the API for Object.clone() and Cloning Objects by Bruce Eckel if you are interested.
[ April 27, 2003: Message edited by: Jose Botella ]
+Pie Number of slices to send: Send
If you clone say, an array, you get a new array object but both will share the subarrays.
+Pie Number of slices to send: Send
Veena -
Halt ! It's the FOCUS police!
Just so anyone new to the ranch isn't confused, the clone() method is NOT on the SCJP 1.4 exam... yeah!
Proceed
-Bert
+Pie Number of slices to send: Send
 

Originally posted by Bert Bates:
Veena -
Halt ! It's the FOCUS police!
Just so anyone new to the ranch isn't confused, the clone() method is NOT on the SCJP 1.4 exam... yeah!
Proceed
-Bert


This question has made me to decide buy your book .Actually I read R&H(Simon roberts & philip heller) book one year ago .But couldn't give SCJP2 then.Now again I have made my mind to give the exam but SCJP1.4.I thought I will just upgrade from whatever info I get on net.But it wasn't easy.Have checked book reveiws.Decided to go with following 2 books
1. "Sun certified programmer & Developer for java 2 study gide" by kathy sierra & Bert Bates
2.Java 2 Programmer exam cram 2 by William brogden & Marcus Green
And will give mock exams after done with reading.
Please anybody suggest me if there are any other resources you think I should go through to do better(above 90% ) in the SCJP1.4 exam....
Thanks
Veena
Is that a spider in your hair? Here, threaten it with this tiny ad:
a bit of art, as a gift, the permaculture playing cards
https://gardener-gift.com


reply
reply
This thread has been viewed 755 times.
Similar Threads
Reg. clone
Runtime.addShutdownHook method ???
Question on casting
By using Cloneable Method
clone
More...

All times above are in ranch (not your local) time.
The current ranch time is
Mar 28, 2024 18:09:45.