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

In java it's a bit difficult to implement a deep object copy function. What steps you take to ensure the original object and the cloned one share no reference?

share|improve this question
Kryo has built-in support for copying/cloning. This is direct copying from object to object, not object->bytes->object. – NateS Jun 15 '12 at 2:43
Here's a related question that was asked later: Deep clone utility recomendation – Brad Cupit May 1 at 15:23

14 Answers

up vote 33 down vote accepted

A safe way is to serialize the object, then deserialize. This ensures everything is a brand new reference.

Here's an article about how to do this efficiently.

Caveats: It's possible for classes to override serialization such that new instances are not created, e.g. for singletons. Also this of course doesn't work if your classes aren't Serializable.

share|improve this answer
2  
Be aware that the FastByteArrayOutputStream implementation provided in the article could be more efficient. It uses an ArrayList-style expansion when the buffer fills up, but it's better to use a LinkedList-style expansion approach. Instead of creating a new 2x buffer and memcpy-ing the current buffer over, maintain a linked list of buffers, adding a new one when the current fills up. If you get a request to write more data than would fit in your default buffer size, create a buffer node that is exactly as large as the request; the nodes don't need to be the same size. – Brian Harris Dec 26 '09 at 16:11

A few people have mentioned using or overriding Object.clone(). Don't do it. Object.clone() has some major problems, and its use is discouraged in most cases. Please see Item 11, from "Effective Java" by Joshua Bloch for a complete answer. I believe you can safely use Object.clone() on primitive type arrays, but apart from that you need to be judicious about properly using and overriding clone.

The schemes that rely on serialization (XML or otherwise) are kludgy.

There is no easy answer here. If you want to deep copy an object you will have to traverse the object graph and copy each child object explicitly via the object's copy constructor or a static factory method that in turn deep copies the child object. Immutables (e.g. Strings) do not need to be copied. As an aside, you should favor immutability for this reason.

share|improve this answer

One way to implement deep copy is to add copy constructors to each associated class. A copy constructor takes an instance of 'this' as its single argument and copies all the values from it. Quite some work, but pretty straightforward and safe.

EDIT: note that you don't need to use accessor methods to read fields. You can access all fields directly because the source instance is always of the same type as the instance with the copy constructor. Obvious but might be overlooked.

Example:

public class Order {

    private long number;

    public Order() {
    }

    /**
     * Copy constructor
     */
    public Order(Order source) {
        number = source.number;
    }
}


public class Customer {

    private String name;
    private List<Order> orders = new ArrayList<Order>();

    public Customer() {
    }

    /**
     * Copy constructor
     */
    public Customer(Customer source) {
        name = source.name;
        for (Order sourceOrder : source.orders) {
            orders.add(new Order(sourceOrder));
        }
    }

    public String getName() {
        return name;
    }

    public void setName(String name) {
        this.name = name;
    }
}
share|improve this answer

XStream is really useful in such instances. Here is a simple code to do cloning

private static final XStream XSTREAM = new XStream();
...

Object newObject = XSTREAM.fromXML(XSTREAM.toXML(obj));
share|improve this answer

You can do a serialization-based deep clone using org.apache.commons.lang.SerializationUtils.clone() in Commons Lang, but be careful--the performance is abysmal.

In general, it is best practice to write your own clone methods for each class of an object in the object graph needing cloning.

share|improve this answer

You can make a deep copy serialization without creating some files.

Copy:

ByteArrayOutputStream bos = new ByteArrayOutputStream();
ObjectOutputStream oos = new ObjectOutputStream(bos);
oos.writeObject(object);
oos.flush();
oos.close();
bos.close();
byte[] byteData = bos.toByteArray();

Restore:

ByteArrayInputStream bais = new ByteArrayInputStream(byteData);
(Object) object = (Object) new ObjectInputStream(bais).readObject();
share|improve this answer

Deep copying can only be done with each class's consent. If you have control over the class hierarchy then you can implement the clonable interface and implement the Clone method. Otherwise doing a deep copy is impossible to do safely because the object may also be sharing non-data resources (e.g. database connections). In general however deep copying is considered bad practice in the Java environment and should be avoided via the appropriate design practices.

share|improve this answer

Use XStream(http://xstream.codehaus.org/). You can even control which properties you can ignore through annotations or explicitly specifying the property name to XStream class. Moreover you do not need to implement clonable interface.

share|improve this answer

Checking whether two arbitrary objects are the same instance may be difficult. For an Integer though it's as simple as the following.

if (instance1 == instance2) {
    // same instance
}
if (instance1.equals(instance2)) {
    // same value. maybe or maybe not same instance.
}

So obviously for some arbitrary object this won't necessarily work (but for other basic types it will work). Other people have mentioned utilities for deep copying so I will as well. There is the serialization method, and other methods are mentioned at Java: how to clone ArrayList but also clone its items?, Deep clone utility recomendation, and Java: recommended solution for deep cloning/copying an instance.

Personally, I recommend http://www.genericdeepcopy.com/

share|improve this answer
import com.thoughtworks.xstream.XStream;

public class deepCopy {

    private static  XStream xstream = new XStream();


    //serialize with Xstream them deserialize ...

    public static Object deepCopy(Object obj){


        return xstream.fromXML(xstream.toXML(obj));


    }



}
share|improve this answer

One very easy and simple approach is to use Jackson JSON to serialize complex Java Object to JSON and read it back.

http://wiki.fasterxml.com/JacksonInFiveMinutes

share|improve this answer

Another project for this: cloning (Java Deep-Cloning library)

share|improve this answer

Now you have the following project : Ubiquity

http://larochef.github.com/ubiquity/

Best regard

share|improve this answer

You can create RMI function like this:

Object copy(Object ob) {
    return ob;
}

And use it.

share|improve this answer

protected by Gilbert Le Blanc Mar 25 at 13:26

This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.

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