what is d difference between deep cloning and shallow
cloning in core java?

Answers were Sorted based on User's Feedback



what is d difference between deep cloning and shallow cloning in core java?..

Answer / sunny

Deep cloning - You clone the object and their constituent parts.

This kind of cloning is adequated when the parts of the
object make up the object, and can not be separated from it.

A car HAS four wheels, and to clone (copy) a car, I must
clone their four wheels.

Shallow cloning - You clone only the object, not their
parts. You add references to their parts.

This kind of cloning is adequated when the parts of the
object are independent of it.

An entry in an address book has the street name, the city
name. To clone that entry, you simply add references to the
street and city names.

That distinction is a little difficult to be done in Java,
but is better understood if you think in terms of databases.

You need deep cloning if the entity requires "cascade
deleting" to be deleted. You need shallow cloning if
"cascade deleting" is not needed.

Is This Answer Correct ?    28 Yes 2 No

what is d difference between deep cloning and shallow cloning in core java?..

Answer / laxmikanth

In Shallow Cloning, you can only create the replica of the
objects but not the objects it is holding. Assume your Car
class (car1) has car name and Engine obj reference (has a
relation). Then by Shallow clone you can create anothr Car
Object (car2)but the newly created object will have its own
car name but the Engine Obj reference of car2 will still
point to car1's Engine.

In Deep Cloning, you can create the complete replica of car1
object.

Is This Answer Correct ?    4 Yes 1 No

what is d difference between deep cloning and shallow cloning in core java?..

Answer / nishant

Deep cloning - You clone the object and their constituent
parts.

Shallow cloning - You clone only the object, not their
parts. You add references to their parts

Is This Answer Correct ?    10 Yes 9 No

Post New Answer

More Core Java Interview Questions

What is the default value of an object reference declared as an instance variable?

0 Answers  


How can we create a synchronized collection from given collection?

0 Answers  


Is main an identifier?

0 Answers  


Write java code to print "Hello how are you" Thread1 should have "Hello" Thread2 should have "how are you" both the threads should start at the same time

4 Answers   Huawei,


Explain the role played by Java Virtual Machine in Java Programming?

1 Answers  


Why there are some null interface in java? What does it mean?

0 Answers  


Can a static member function access member variable of an object?

0 Answers   Virtusa,


Can we override tostring method in java?

0 Answers  


What is java reflection?

0 Answers  


Why collection is called framework in java?

0 Answers  


What is boolean query?

0 Answers  


What are loops in java?

2 Answers  


Categories