Cloning (programming)
title: "Cloning (programming)" type: doc version: 1 created: 2026-02-28 author: "Wikipedia contributors" status: active scope: public tags: ["object-oriented-programming"] topic_path: "technology/programming-languages" source: "https://en.wikipedia.org/wiki/Cloning_(programming)" license: "CC BY-SA 4.0" wikipedia_page_id: 0 wikipedia_revision_id: 0
In computer science, cloning refers to the making of an exact copy of an object, frequently under the paradigm of instance-based programming, or object-oriented programming (OOP).
Shallow copies
In most programming languages (exceptions include Ruby), primitive types such as double, float, int, long, etc. simply store their values somewhere in the computer's memory (often the call stack). By using simple assignment, you can copy the contents of the variable to another one:
Copying primitive types in Java or C++: ::code[lang=java] int original = 42; int copy = 0;
copy = original; ::
Many OOP programming languages (including Java, D, ECMAScript, and C#) make use of object references. Object references, which are similar to pointers in other languages, allow for objects to be passed around by address so that the whole object need not be copied.
A Java example, when "copying" an object using simple assignment: ::code[lang=java] Object original = new Object(); Object copy = null;
copy = original; // does not copy object but only its reference ::
The object is not duplicated, the variables 'original' and 'copy' are actually referring to the same object. In C++, the equivalent code
::code[lang=c] Object* original = new Object(); Object* copy = NULL; copy = original; ::
makes it clear that it is a pointer to the object being copied, not the object itself.
Cloning
The process of actually making another exact replica of the object instead of just its reference is called cloning. In most languages, the language or libraries can facilitate some sort of cloning. In Java, the Object class contains the clone() method, which copies the object and returns a reference to that copied object. Since it is in the Object class, all classes defined in Java will have a clone method available to the programmer (although to function correctly it needs to be overridden at each level it is used).
Cloning an object in Java: ::code[lang=java] Object originalObj = new Object(); Object copyObj = null;
copyObj = originalObj.clone(); // duplicates the object and assigns the new reference to 'copyObj' → ::
C++ objects in general behave like primitive types, so to copy a C++ object one could use the '=' (assignment) operator. There is a default assignment operator provided for all classes, but its effect may be altered through the use of operator overloading. There are dangers when using this technique (see slicing). A method of avoiding slicing can be implementing a similar solution to the Java clone() method for the classes and using pointers. (There is no built-in clone() method.)
A C++ example of object cloning: ::code[lang=cpp] Object originalObj; Object copyObj(originalObj); // creates a copy of originalObj named copyObj ::
A C++ example of object cloning using pointers (to avoid slicing see): ::code[lang=cpp] Object* originalObj = new Object; Object* copyObj = nullptr;
copyObj = new Object(*originalObj); // creates a copy of originalObj and assigns its address to copyObj ::
References
References
- See Q&A at [http://en.allexperts.com/q/C-1040/constructor-virtual.htm en.allexperts.com] {{Webarchive. link. (2009-07-18)
::callout[type=info title="Wikipedia Source"] This article was imported from Wikipedia and is available under the Creative Commons Attribution-ShareAlike 4.0 License. Content has been adapted to SurfDoc format. Original contributors can be found on the article history page. ::