36
votes
8answers
10k views
What is the most efficent 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 = …
17
votes
12answers
9k 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 …
12
votes
8answers
8k 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 …
11
votes
10answers
1k 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 …
8
votes
7answers
664 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?
7
votes
6answers
290 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 …
7
votes
6answers
2k 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.
6
votes
6answers
198 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 …
6
votes
1answer
207 views
Does Scala AnyRef.clone perform a shallow or deep copy?
In Scala, does AnyRef.clone perform a shallow or deep copy?
6
votes
5answers
259 views
Does cloning provide a performance improvement over constructors/factory methods?
I'm maintaing an older Java code base (jvm 1.4) that seems to use cloning as an alternative to object instantiation, I'm guessing as a performance optimization. Here's a contrived example:
public …
6
votes
3answers
615 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 …
5
votes
5answers
396 views
Are there any alternatives to implementing Clone in Java?
In my Java project, I have a vector of various types of Traders. These different types of traders are subclasses of the Trader class. Right now, I have a method that takes a Trader as an argument and …
4
votes
5answers
691 views
Java: Rationale of the Cloneable interface
Why wasn't the .clone() method specified in the java.lang.Cloneable interface ?
4
votes
8answers
885 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 …
4
votes
4answers
454 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(), protected native Object clone(),
so my question is what are these natives and how do these …
