A clone is a copy of an object with all of the same attributes, data, and methods as the original object. Or a software system that is designed to mimic another system.

learn more… | top users | synonyms

1051
votes
30answers
265k views

Most efficient way to clone an object?

What is the most efficient way to clone a JavaScript object? I've seen: obj = eval(uneval(o)); but that's not cross platform (FF only). I've done (in Mootools 1.2) things like this: obj = ...
474
votes
17answers
249k views

Deep cloning objects in C#

I want to do something like: myObject myObj = GetmyObj(); //Create and fill a new object myObject newObj = myObj.Clone(); And then make changes to the new object that are not reflected in the ...
260
votes
25answers
116k views

Most elegant way to clone a JavaScript object

I have an object x. I'd like to copy it as object y, such that changes to y do not modify x. What's the most elegant way of doing this in JavaScript? Edit: I realize that copying objects derived ...
195
votes
3answers
36k views

git branch, fork, fetch, merge, rebase and clone, what are the differences?

Can someone help me understand the difference between a branch, a fork and a clone in Git? Similarly what does it mean when I do a git fetch as opposed to a git pull. Also what does rebase mean in ...
120
votes
9answers
119k views

How do I clone a generic list in C#?

I have a generic list of objects in C#, and wish to clone the list. The items within the list are cloneable, but there doesn't seem to be an option to do list.Clone(). Is there an easy way around ...
98
votes
5answers
37k views

How to clone a list in python?

Java has cloning methods. How can I do it on a list in python?
57
votes
6answers
18k views

Java: recommended solution for deep cloning/copying an instance

I'm wondering if there is a recommended way of doing deep clone/copy of instance in java. I have 3 solutions in mind, but I can have miss some, and I'd like to have your opinion edit: include Bohzo ...
56
votes
5answers
14k views

Git fork is git clone?

I keep hearing people say they're forking code in git. Git "fork" sounds suspiciously like git "clone" plus some (meaningless) psychological willingness to forgo future merges. There is no fork ...
48
votes
6answers
30k views

What is the best way to clone/deep copy a .NET generic Dictionary<string, T>?

I've got a generic dictionary Dictionary that I would like to essentially make a Clone() of ..any suggestions.
46
votes
14answers
43k views

How do you make a deep copy of an object in Java?

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?
44
votes
12answers
91k views

How to clone ArrayList and also clone its contents?

How can I clone ArrayList but also clone its items in Java 1.5? For example I have: ArrayList<Dog> dogs = getDogs(); ArrayList<Dog> clonedList = ....something to do with dogs.... And I ...
41
votes
4answers
10k views

What do these words mean in Git: Repository, fork, branch, clone, track?

I'm honestly not clear on the semantics here. They're all about copies/variants of a code+history unit, but past that I'm not sure I could say. Is this logical structure explained somewhere?
38
votes
12answers
58k views

How do I clone a generic List in Java?

I have an ArrayList<String> that I'd like to return a copy of. ArrayList has a clone method has the following signature: public Object clone() After I call this method, how do I cast the ...
35
votes
6answers
8k views

How do I clone a sub-folder of a repository in Mercurial?

I have a Mercurial repository containing a handful of related projects. I want to branch just one of these projects to work on it elsewhere. Is cloning just part of a repository possible, and is that ...
34
votes
2answers
20k views

The difference between fork(), vfork(), exec() and clone()

I was looking to find the difference between these four on Google and I expected there to be a huge amount of information on this, but there really wasn't any solid comparison between the four calls. ...
32
votes
2answers
12k views

Shallow copy of a Map in Java

As I understand it, there are a couple of ways (maybe others as well) to create a shallow copy of a Map in Java: Map<String, Object> data = new HashMap<String, Object>(); Map<String, ...
31
votes
3answers
11k views

How do you clone a BufferedImage

Hi I have an object which has many bufferedimages in it, I want to create a new object copying all the bufferedimages into the new object, but these new images may be altered and i dont want the ...
31
votes
6answers
11k views

clone() vs copy constructor vs factory method?

I did a quick google on implementing clone() in Java and found: http://www.javapractices.com/topic/TopicAction.do?Id=71 It has the following comment: copy constructors and static factory methods ...
28
votes
9answers
11k views

Why is the clone() method protected in java.lang.Object?

What is the specific reason that clone() is defined as protected in java.lang.Object?
26
votes
8answers
19k views

How to properly override clone method?

I need to implement a deep clone in one of my objects which has no superclass. What is the best way to handle the checked CloneNotSupportedException thrown by the superclass (which is Object)? A ...
26
votes
7answers
32k views

How to clone git repository with specific revision/changeset?

How can I clone git repository with specific revision/changeset? Something like I usually do in Mercurial: hg clone -r 3 /path/to/repository Thanks!
25
votes
4answers
15k views

How do I create a copy of an object in PHP?

It appears that in PHP objects are passed by reference. Even assignment operators do not appear to be creating a copy of the Object. Here's a simple, contrived proof: <?php class A { public ...
24
votes
10answers
6k views

Is dd better than cat?

Suppose I want to clone my hard drive (hda) to another drive (hdb) in the same computer. As I see it, there's two easy, rough and do-it-yourself ways: cat /dev/hda > /dev/hdb and dd if=/dev/hda ...
24
votes
2answers
2k views

How can I remove the working copy from a Mercurial clone?

When cloning a repository with mercurial you can pass the -U/--noupdate flag to create a clone with no working copy. Can I remove the working copy if I forget to pass this flag at clone time? And if ...
23
votes
11answers
24k views

Deep clone utility recomendation

Is there any utility for deep cloning for java collections: Arrays Lists Maps NOTE: prefer some solution without usage of serialization, but with use of Object.clone() method. I can be sure that ...
22
votes
2answers
2k views

What's the differences between ruby dup and clone method?

I checked the doc of ruby 1.8.7 and it says: "In general, clone and dup may have different semantics in descendent classes. While clone is used to duplicate an object, including its internal state, ...
22
votes
4answers
7k views

Cloning a Non-Standard Svn Repository with Git-Svn

I'm relatively new to Git, but I've found it so easy to work with at home that I'd like to use it at work where our projects are stored in Svn repositories. Unfortunately, the repositories are ...
21
votes
3answers
33k views

When I make a draggable clone and drop it in a droppable I cannot drag it again

When I make a draggable clone and drop it in a droppable I cannot drag it again. How do I do that? Secondly I can only figure out how to us .append to add the clone to the droppable. But then it snaps ...
20
votes
6answers
13k views

How to clone an InputStream?

I have a InputStream that I pass to a method to do some processing. I will use the same InputStream in other method, but after the first processing, the InputStream appears be closed inside the ...
19
votes
5answers
11k views

Is there a method to clone an array in jQuery?

This is my code : var a=[1,2,3] b=$.clone(a) alert(b) Doesn't jQuery have a 'clone' method? How can I clone an array using jQuery?
19
votes
4answers
14k views

How can you clone a WPF object?

Anybody have a good example how to deep clone a WPF object, preserving databindings? The marked answer is the first part. The second part is that you have to create an ExpressionConverter and ...
19
votes
2answers
9k views

How do I clone a View?

My question is almost exactly this question: Clone textview to append it to a ViewGroup However, I was inflating a view, and then attempting to clone it at the object level for performance reasons ...
19
votes
5answers
5k views

Java: Rationale of the Cloneable interface

Why wasn't the .clone() method specified in the java.lang.Cloneable interface ?
19
votes
3answers
7k views

Git svn clone: How to defer fetch of revision history

I often have the case that I want to work on a SVN repository right away. But an ordinary git svn clone [url] also clones the entire history. So I want to speed things up. The first part is to fetch ...
17
votes
3answers
3k views

java.util.Date clone or copy to not expose internal reference

It is best practice not to expose the internal references of an Object (Entity). So if an Object has a field of type java.util.Date then for example the getter for this field should return not the ...
17
votes
2answers
5k views

What is the difference between pull and clone in git?

What is the difference between doing: mkdir repo cd repo git init git remote add origin git://github.com/cmcculloh/repo.git git fetch --all git pull origin master and git clone ...
17
votes
6answers
9k views

Exactly clone an object in javascript

I tried to exactly clone an object in javascript. I know the following solution using jquery: var newObject = jQuery.extend({}, oldObject); // Or var newObject = jQuery.extend(true, {}, oldObject); ...
16
votes
4answers
5k views

What is native implementation in Java

If we look at the Java Object class then we can find some of the methods like public native int hashCode() or protected native Object clone(). My question is: what are these natives and how do these ...
16
votes
6answers
7k views

Changing name attr of cloned input element in jQuery doesn't work in IE6/7

This SSCCE says it all: <!doctype html> <html lang="en"> <head> <title>Test</title> <script type="text/javascript" ...
16
votes
6answers
3k views

Efficient way to clone a HashSet<T>?

A few days ago, I answered an interesting question on SO about HashSet<T>. A possible solution involved cloning the hashset, and in my answer I suggested to do something like this: ...
15
votes
3answers
14k views

clone node on drag

i want to be able to create a copy of the element that i want to drag. im using the standard ui draggable and droppable. i know about the helper clone option. but that does not create a copy. the ...
15
votes
6answers
22k views

Java :deep copy, shallow copy, clone [duplicate]

Possible Duplicate: How do I copy an object in Java? I need clarification on the differences between deep copy, shallow copy, and clone in Java
15
votes
4answers
8k views

jQuery UI: Drag and clone from original div, but keep clones

I have a div, which has jQuery UI Draggable applied. What I want to do, is click and drag that, and create a clone that is kept in the dom and not removed when dropped. Think of a deck of cards, my ...
14
votes
3answers
5k views

How can I clone a DateTime object in C#? [closed]

How can I clone a DateTime object in C#?
14
votes
2answers
7k views

Any way to clone HTML5 canvas element with its content?

Is there any way to create a DEEP copy of CANVAS element with all drawn content?
13
votes
5answers
19k views

Is it possible to clone html element objects in JavaScript / JQuery?

I am looking for some tips on how to solve my problem. I have a html element (like select box input field) in a table. Now I want to copy the object and generate a new one out of the copy, and that ...
13
votes
2answers
1k views

In PHP can someone explain cloning vs pointer reference?

To begin with, I understand programming and objects, but the following doesn't make much sense to me in PHP. In PHP we use the & operator to retrieve a reference to a variable. I understand a ...
12
votes
6answers
1k views

How can I find copy/paste (duplicate, clone) code in Perl?

I've searched the Internet for a while now and I have not been able to find any free (or cheap) tools/utilities/modules that can analyze a set of Perl files (modules or scripts) and flag duplicate or ...
12
votes
1answer
10k views

What's the most straightforward way to clone an empty, *bare* git repository?

I've just finished cruising the Google search results that contain all the email rants about how stupid it is that git can't clone an empty repository. Some kind soul even submitted a patch. Until ...
12
votes
7answers
9k views

git clone fails with “index-pack” failed?

So I created a remote repo that's not bare (because I need redmine to be able to read it), and it's set to be shared with the group (so git init --shared=group). I was able to push to the remote repo ...

1 2 3 4 5 32