Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

12
votes
3answers
2k views

Can I deep clone a c# object not tagged ICloneable or Serializable?

I have an object not written by myself that I need to clone in memory. The object is not tagged ICloneable or Serializable so deep cloning through the interface or serialization will not work. Is ...
10
votes
3answers
2k views

How to deep clone objects containing an IList property using AutoMapper

I am trying to deep clone the following class using AutoMapper: public class MainData { public MainData() { Details = new List<Detail>(); } public int Id { get; private ...
10
votes
3answers
2k views

What's the best way to make a deep copy of a data structure in Perl?

Given a data structure (e.g. a hash of hashes), what's the clean/recommended way to make a deep copy for immediate use? Assume reasonable cases, where the data's not particularly large, no complicated ...
6
votes
1answer
149 views

High Performance Cloning

I'm after a means of deep cloning an object graph in a perfomant way. I'm going to have multiple threads cloning a graph extremely quickly such that they can play with some state and throw away the ...
5
votes
9answers
4k views

I need to implement C# deep copy constructors with inheritance. What patterns are there to choose from?

I wish to implement a deepcopy of my classes hierarchy in C# public Class ParentObj : ICloneable { protected int myA; public virtual Object Clone () { ParentObj newObj ...
3
votes
3answers
239 views

How to implement deep copy or clone of an object that has circular references?

I have such hierarchy: class Sphere; class Cube; class SpherePair; class Entity {}; class Cube : public Entity { public: list<Sphere*> spheres_; }; class Sphere : public Entity { public: ...
2
votes
2answers
73 views

How do I do a Java-deep copy of an object?

I have a class (Literal). I need to be able to keep an intact Literal instance in memory throughout my application, and have a copy of it which I can alter. I have used two ways to do this: class ...
2
votes
2answers
75 views

How can I deep copy an object of one object type to another object type that share an inheritance structure

I am currently building an object model for HL7 messages. Without diving into those, the basic structure that we have looks similar to this: Base Object Intermediary Object DeepMessage1 ...
2
votes
1answer
56 views

Performant way to clone rather large subtree in database?

Currently I'm trying to performance-optimize a code in a Windows Forms .NET 2.0 application that does copy operations on hierarchical database objects. Here is an example structure: Each object in ...
2
votes
2answers
363 views

Deep cloning Moose object with attributes that are ArrayRef[Object] and Set::Object

I've got a Moose object: class My::Game { has 'players' => (isa => 'Set::Object', ...) has 'action_sequence' => (isa => 'ArrayRef[My::Game::Action]', ...) } Now I want to be able to ...
2
votes
2answers
517 views

How can I clone FileStream type?

How can I clone FileStream type? The problem is that I using MagickNet.Image(inputStream) to get the image distentions before saving it, but it seems to closing the inputStream. So, I can send a ...
2
votes
2answers
480 views

LinkedHashMap<String,Object>.clone();

does the above command produce a deep copy of a LinkedHashMap's elements?
2
votes
6answers
6k views

Deep cloning multidimensional arrays in Java…?

I have two multidimensional arrays (well actually they're only 2D) which have inferred size. How do I deep clone them? Here's what I have gotten so far: public foo(Character[][] original){ clone = ...
1
vote
1answer
67 views

Cloning assosiations with attached file

I have got an object wich I am using as a pattern. This objects has got a number of associations. One of those association is an attach. My object has many attaches. I can clone all, you know, db ...
1
vote
3answers
177 views

how to create clone of an object which does not implement Cloneable

I have to clone an object which does not implement Cloneable interface how to do this. Actually in my project I am using JCChart .now my class extends MultiChart and I have to craete the deep copy of ...
1
vote
2answers
127 views

jQuery Clone Recursion

Why is this "copy"(click) wrong, it binds all the previous handlers as well: var add = function(element) { var ele = element.clone(true); $('.container').append(ele); $('.copy', ...
1
vote
0answers
130 views

Deepclone issue with child object need deep serializing

I've got an issue when implementing DeepClone by serialization/deserialization way. The fact: I want my class OwnDataset to have its deepclone instance, by 2 below common procedures - constructor and ...
1
vote
2answers
1k views

difference between DataContract attribute and Serializable attribute in .net

I am trying to create a deep clone of an object using the following method. public static T DeepClone<T>(this T target) { using (MemoryStream stream = new MemoryStream()) ...
1
vote
3answers
1k views

Implementing the ICloneable Interface C#(Question on Deep Cloning)

I was looking at code that implemented the ICloneable interface for one of the classes. The class was as follows: public class TempClass { String[] names; String[] values; } A partial class ...
0
votes
0answers
47 views

library for deep cloning java objects [closed]

Possible Duplicate: Deep clone utility recomendation I am looking for a open source library for object cloning. objects are not serializable/java beans/clonable. I found few alternatives ...
0
votes
1answer
22 views

Delphi Prism : Is this deepcopy or shallowcopy?

Take a look at the following code: method TMakerRect.Clone: TMakerObject; var newRect:TMakerRect; begin newRect := new TMakerRect(bounds,myForm); newRect.Assign(Self); newRect.theBrushStyle ...
0
votes
1answer
138 views

How to clone a generic list of instances of a class derived from an abstract class in C#?

I have a base class: abstract class Base and some derived classes: class Derived: Base, that all data members are in the base class. I have another generic list: List<Base> list. Now I want to ...
0
votes
1answer
175 views

Clone a list of reference types that CANNOT implement ICloneable

Is there an easier/tidier way to deep clone a list of reference types that do not implement ICloneable. Currently have been looping through each object in the list like so: Dim myListCopy As New ...
0
votes
1answer
179 views

Copy a table to new window

I'm trying to open up a new browser window, and copy a table from the parent window into this new window. I'm using Prototype.js and this is the code I have: prog_window = window.open(); ...
0
votes
1answer
70 views

Cloning WebService

Is there a way to clone WebService object in as3? The ObjectUtil method seems to throw an error. If not is there a way to cache wsdl and assign it to new WebService object so that constant loading of ...