Tagged Questions

A clone is an copy of an object with all of the same attributes, data, and methods as the original object.

learn more… | top users | synonyms

378
votes
24answers
110k views

What is the most efficient way to clone a JavaScript 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 = ...
207
votes
16answers
127k views

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 ...
60
votes
11answers
61k 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 ...
39
votes
1answer
7k views

Difference between a branch, fork and clone in git?

Can someone help me understand the difference between a branch, a fork and a clone in Git?
32
votes
7answers
15k 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.
26
votes
6answers
6k 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 ...
22
votes
5answers
7k views

How to clone a list in python?

Java has cloning methods. How can I do it on a list in python?
21
votes
5answers
5k 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 ...
19
votes
7answers
3k 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 ...
18
votes
7answers
37k 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 ...
18
votes
10answers
4k 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 ...
17
votes
5answers
4k views

Java: Rationale of the Cloneable interface

Why wasn't the .clone() method specified in the java.lang.Cloneable interface ?
16
votes
1answer
3k 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, ...
16
votes
4answers
4k 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 ...
15
votes
2answers
4k 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 ...
15
votes
8answers
6k 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?
15
votes
10answers
28k 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 ...
14
votes
4answers
7k 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 ...
14
votes
3answers
8k 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 ...
13
votes
6answers
878 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: ...
12
votes
7answers
3k 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 ...
12
votes
10answers
10k 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 ...
12
votes
10answers
12k 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?
11
votes
6answers
857 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 ...
10
votes
2answers
470 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 ...
10
votes
3answers
2k 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?
10
votes
4answers
4k 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); ...
9
votes
4answers
390 views

What is this field-by-field copy done by Object.clone()?

In Effective Java, the author states that: If a class implements Cloneable, Object's clone method returns a field-by-field copy of the object; otherwise it throws ...
9
votes
2answers
3k 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 ...
9
votes
1answer
2k views

Does Scala AnyRef.clone perform a shallow or deep copy?

In Scala, does AnyRef.clone perform a shallow or deep copy?
8
votes
2answers
199 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 ...
8
votes
1answer
211 views

How to clone objects in Scala?

Recently had some problems to copy a complex object. Its internal organization is composed of several nested objects. I noticed that the clone() is not available. What is the best solution to solve ...
8
votes
5answers
484 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 ...
8
votes
3answers
4k views

How do I install Arc to get a Hacker News clone website?

I've downloaded the source code for arc3.1 and extracted it into a folder. I've downloaded and installed version 372 of MzScheme (on Mac OSX). What do I do next? The install instructions on the arc ...
8
votes
7answers
875 views

How do I “fork” a Stream in .NET?

As discussed before, when a BinaryReader or BinaryWriter gets closed, its underlying Stream get closed as well (aargh). Consider this situation: a routine R is passed a MemoryStream, say M; I would ...
8
votes
3answers
15k 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 ...
7
votes
4answers
2k views

How can I clone a DateTime object in C#?

How can I clone a DateTime object in C#?
7
votes
2answers
390 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 ...
7
votes
4answers
4k views

Deep copy vs Shallow Copy [closed]

Possible Duplicate: What is the difference between a deep copy and a shallow copy? What is the difference between deep and shallow copy. What type of a copy does a copy constructor do?
7
votes
3answers
4k 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 ...
7
votes
3answers
656 views

Is the Prototype Design Pattern Really Just Clone?

I am doing an in depth study on design patterns, and I came across prototype, which I didn't really study before. I have searched the web and several books, and there isn't a really good example of ...
7
votes
1answer
5k 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 ...
7
votes
4answers
2k views

What is the best way to clone a business object in Silverlight?

What is the best way to create a clone of a DTO? There is not an ICloneable interface or a BinaryFormatter class in Silverlight. Is reflection the only way?
6
votes
3answers
107 views

Cloning objects

For the purposes of making a copy of an object and getting access to its data, what is better and why? 1. Create a new object and initialize it with the data you want to clone through the ...
6
votes
3answers
151 views

Is there any reason to prefer System.arraycopy() over clone()?

When copying an entire array, I've often seen people write: int[] dest = new int[orig.length]; System.arraycopy(orig, 0, dest, 0, orig.length); But it seems to me there is no reason to favor this ...
6
votes
2answers
308 views

problem when clone - jquery

i am using this plugin Now i am doing a way to clone the select dropdown. A button to add cloned divs. So, an user have a initial dropdown, but he can add more. The div is cloned. The main problem ...
6
votes
2answers
680 views

Mercurial clone from a branch

We have a repository with three named branches, I wanted to clone one of the branches. Is there a mercurial command to do that? If I provide the path (of branch) with hg clone I get 404 error. ...
6
votes
5answers
2k 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?
6
votes
3answers
791 views

C++ Virtual Constructor, without clone()

I want to perform "deep copies" of an STL container of pointers to polymorphic classes. I know about the Prototype design pattern, implemented by means of the Virtual Ctor Idiom, as explained in the ...
6
votes
1answer
637 views

how to detach alternates after git clone --reference?

I'm using git clone --reference to reduce network traffic over a slow connection. Now, git-clone's man page points out the dangers of using this and suggests git repack -a to break the link, which ...

1 2 3 4 5 17