Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Why do we use the clone() method in Java? (Please give the answer in respect of memory constraint.) Will that reduce memory usage? If yes, then how? Will that reduce the effect of memory leak?

share|improve this question

5 Answers

up vote 4 down vote accepted

Apart from do not use clone, implement a copy constructor, you asked about memory constraints.

The idea of cloning is to create an exact duplicate of the cloned object. So in worst case, you use twice the amount of memory afterwards. Practically - a bit less, because Strings are often interned and will (usually) not be cloned. Even though it's up to the implementor of the clone method/copy constructor.

Here's a short example of a class with a copy constructor:

public class Sheep {
  private String name;
  private Fur fur;
  private Eye[2] eyes;
  //...

  // the copy constructor
  public Sheep(Sheep sheep) {
    // String already has a copy constructor ;)
    this.name = new String(sheep.name);

    // assuming Fur and Eye have copy constructors, necessary for proper cloning
    this.fur = new Fur(sheep.fur); 
    this.eyes = new Eye[2];
    for (int i = 0; i < 2; i++) 
       eyes[i] = new Eye(sheep.eyes[i]);
  }
}

Usage:

Sheep dolly = getDolly();  // some magic to get a sheep
Sheep dollyClone = new Sheep(dolly);
share|improve this answer
What if Sheep extended some base class, say Animal which had attributes that needed to be called as well. Would the copy constructor approach imply that both Animal and Sheep have copy constructors, and the Sheep CC would have to call super(sheep)? – Adam Parkin Feb 21 at 17:49
Yes. The call would be super(sheep); and the superclass would init its fields based on that instance. You need to call the (one) constructor of the superclass anyway. – Andreas_D Feb 22 at 11:37

We should not use it. It is a broken and obsolete idiom, which should be avoided in new code. Better use a copy constructor instead whenever you can.

share|improve this answer

see clone constraints

in few words it is used to copy the objects instead the references, it increase the memory usage.

share|improve this answer

We should avoid using clone() Here is good example

share|improve this answer

Making a copy of an object seems at first to be a straight forward task:

Simply copy the values of all the properties into another instance of the same class. But what about the variables that are references to other objects? Copies of these reference values mean they will point to the same objects as the first class.

But maybe that is not what we want. Perhaps we want all the objects referenced by the copy to be independent copies as well.

These two types of object copies are called:

shallow copy - exact bit copy of all the attributes of the original object deep copy - primitives are copied exactly but objects referenced are copied rather than the references themselves. The Object class, which is inherited by all Java classes, includes the clone() method that will make exact bit copies of all the properties.

However, clone() is a protected method. So a given object can not be cloned by instances of any classes outside the package (unless they are subclasses of that object's class). This allows the class designer to specify explicitly what kind of clones (shallow or deep) to make.

Java requires classes that want to override the clone() method, to implement the cloneable interface. The clone() method must be made public as well so as to override the access restrictions.

For example, the HashTable class implements cloneable. Its clone() method makes a shallow copy so the keys and values of the copied HashTable will reference the same objects as the original.

Many core Java classes, however, do not implement cloneable. If the clone() method is invoked for such classes, a CloneNotSupportedException will result.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.