shallow copy contains a link(address in memory) to the original variable. Changes on shallow copies are reflected on origin object.

learn more… | top users | synonyms

0
votes
2answers
33 views

How to change the frame of a view when a variable value changes?

In my viewcontroller, there are few views. All of that view's frames are depends on the variable CGFloat borderWidth These views are defined like sec1 = [[MSSectionView ...
1
vote
3answers
63 views

Destructor called to destruct object before I finish using this object

In my code there's operator+ overloading. In this scope, I define object ans, which I want to build and return, but it seems that the destructor distructs ans before I can return it, so this method ...
1
vote
1answer
33 views

change contents of shallow copied array of strings in ruby

Suppose I create the following arrays in ruby: a = ["apple", "cherry"] b = a.dup Here, b is a shallow copy of a. So if I do: a.each{|fruit| fruit << " pie"} I get both a and b equal to ...
0
votes
1answer
61 views

Lazy copying - how to create a deep copy from shallow copy

I have a class which is using lazy copying - when a copy constructor is called, it creates shallow copy and when one method is called it creates a deep copy and add some more data. I'm stuck in part ...
4
votes
2answers
98 views

Shallow copy reference into variable in Perl

In Perl, you can assign to a variable a reference to another variable, like this: my @array = (1..10); my $ref = \@array; And, as it is a reference, you can do something like this and both ...
0
votes
6answers
72 views

Why does copy of the List still change properties in the original List using C#

Lets say I have this class public class Employee { public string FirstName { get; set; } public string LastName { get; set; } public bool isActive { get; set; } } And use it like this: ...
1
vote
1answer
68 views

Shallow copy and deep copy in C

I tried googling this but only objected oriented languages pop up as results. From my understanding a shallow copy is copying certain members of a struct. so lets say a struct is typedef struct ...
0
votes
1answer
97 views

How to Implement deep and shallow copy for NSMutableArray in iOS?

I am trying to implement deep and shallow copy for NSMutableArray, self.oldArray =[[NSMutableArray alloc] initWithCapacity:0]; self.shallowCopy =[[NSMutableArray alloc] initWithCapacity:0]; ...
1
vote
2answers
86 views

python lists copying is it deep copy or Shallow copy and how is it done?

How is Deep copy being done in python for lists? I am a little confused for copying of lists. Is it using shallow copy or deep copy? Also, what is the syntax for sublists? is it g=a[:]?
3
votes
3answers
69 views

Java: Vector add function is it shallow?

When you use the add function to add an object to a vector, is it a shallow copy or deep copy? If it's shallow it means if you change the objects in the vector you would change the original copy of ...
1
vote
1answer
167 views

Silverlight: How to Make a ShallowCopy of a UIElement

I need to add a UIElement to two different canvases, but one UIElement can only be a child of ONE canvas, so I have to create a ShallowCopy (DeepCopy not needed) of the UIElement. I want to use ...
1
vote
3answers
76 views

dup gives different results when hash is one vs. two dimensions

dup is shallow copy, so when doing this: h = {one: {a:'a', b: 'b'}} h_copy = h.dup h_copy[:one][:b] = 'new b' now h and h_copy is same: {:one=>{:a=>"a", :b=>"new b"}} yes, that right. But ...
7
votes
3answers
90 views

Can I write different copyCtor for const and non-const instances?

I have the following problem: I have a class which should do this: Obj o; Obj o1(o), o1=o; // deep-copies const Obj c(o), c=o; // deep-copies const Obj c1(c), c1=c; // shallow-copies Obj o2(c), ...
0
votes
3answers
56 views

How to implement two classes for automatic decision over deep and shallow copy?

I have the following design problem: I have a Resource with two sorts of accessors: one is to modify it (let's call it Access) one is for const-like access (let's call it Const_access), but you ...
1
vote
2answers
47 views

Issue with Python class instances having a shallow connection

I'm attempting to write a genetic algorithm framework in Python, and am running into issues with shallow/deep copying. My background is mainly C/C++, and I'm struggling to understand how these ...
1
vote
4answers
194 views

Shallow copy for arrays, why can't simply do newArr = oldArr?

Let's say I have an array of integers, "orig" I want to shallow copy it, so can't I just do this: int[] shallow = orig; My professor said that for primitives, shallow and deep copy are essentially ...
4
votes
1answer
101 views

shallow-copy a segment of a value type array

I'm trying to shallow-copy a double[] into segments, and pass those segments to new threads, like so: for (int i = 0; i < threadsArray.Length; i++) { sub[i] = new double[4]; //Doesn't ...
0
votes
1answer
180 views

git shallow clone along with branch

I have to deal with a git repo that contains some binaries. I would be REALLY grateful if someone could explain this to me >git clone --depth 1 -- ssh://git/foo/bar.git test_d Cloning into ...
4
votes
7answers
170 views

How to use both default and own copy constructor in C++?

I have a long class with a lot of members. I want to write copy constructor for it. But if I write my own copy constructor I lost access to deafult copy constructor. I just want to repair a few ...
1
vote
2answers
87 views

shallow copying of data type with heap objects and destruction conflict

I have the following data type: class A{ public: A(){ } ~A(){ for(size_t i=0; i<b_elements.size(); i++) delete b_elements[i]; b_elements.clear(); } ...
3
votes
1answer
67 views

Does stl library use malloc while copying pointers?

I have a question regarding copying pointers in the stl library. Say I define: struct A{ int x; } std::map<int, const A*> map1; I then populate map1 using memory from the heap using malloc ...
4
votes
1answer
161 views

Shallow clone with JGIT

How I can do git clone --depth 1 ... with JGIT library?
3
votes
1answer
70 views

Construct Delegate from Delegate. What does the new Delegate Point to?

Consider the following: Action<int, T> a1 = new Action<int, T>(_insert); Action<int, T> a2 = new Action<int, T>(a1); What is a2 referring to ? Is it a1, a shallow copy of ...
1
vote
2answers
148 views

Can I prevent a copy constructor with some exception?

I will use std::map<int, A> A is a class and I have to prevent shallow copy, but there are many classes like A, so making a deep copy construct and operator is tiresome. Since it seems that I ...
0
votes
0answers
142 views

Shallow Copy of a Custom C# Object

I am working on some code that is written in C#. In this app, I have a custom collection defined as follows: public class ResultList<T> : IEnumerable<T> { public List<T> Results { ...
1
vote
0answers
114 views

shallow matrix construction in octave C++ api

Is there a way to construct a Matrix in octave's C++ api from a pointer to data + size (ie, not using deep copy)? Possibly an undocumented unsafe way, where the caller has to manage the corresponding ...
1
vote
1answer
571 views

Deep Copy Constructor for binary tree

I am trying to create a deep copy of my binary tree data structure in C++. The problem is the code I am using only seems to be giving me a shallow copy (which seems to cause problems with my ...
1
vote
1answer
339 views

In c# does array.ToArray() preform a DEEP copy?

This should be a pretty basic question, but I've been having a little trouble finding a definite answer. When you have and array of values and you use the .ToArray() method does it create a deep or ...
2
votes
2answers
119 views

Copy constructor c++ weird behavoir?

Hi I have a class which includes an array, I'm not passing this through my class constuctor (could be going wrong here?) The array is just defined in the class then initialized in a read method. But ...
1
vote
2answers
773 views

Create shallow copy/clone of subclass of EntityObject

We have an audit table in our database, and on update the old and new values are serialized to XML and stored in the same row. The objects are currently deep-cloned thus: public EntityObject ...
1
vote
3answers
363 views

Shallow copy of a hashset

Whats the best way of doing it. HashSet<reference_type> set2 = new HashSet<reference_type>(); Traverse the set with a foreach like this? foreach (var n in set) set2.Add(n); Or ...
2
votes
0answers
235 views

Shallow copy of mpz_t

GMP provides methods for initializing and assigning an mpz_t. A call to mpz_init_set(a, b) will assign to a the content of b. However, I assume, this performs a deep copy on b. On my project I need ...
0
votes
2answers
309 views

python deepcopy and shallow copy and pass reference

A question about python deepcopy and shallow copy. the post at What is the difference between a deep copy and a shallow copy? cannot help me. why e.g. 1 's sum is 6 not 10 ? e.g.1 : kvps = { ...
3
votes
2answers
1k views

C# Shallow copy Dictionary?

I need to shallow copy a dictionary in c#. For instance: Dictionary<int,int> flags = new Dictionary<int,int>(); flags[1] = 2; flags[2] = 3; flags[0] = 9001; Dictionary<int,int> ...
0
votes
1answer
241 views

Object Shallow Copy in C#

I know to perform a shallow copy in C# we could use MemberwiseClone() function but I have an object inside a function and I want to take a copy of this object, so when I added to a list it won't ...
0
votes
1answer
46 views

assign value of one actionscript component to another (shallow copy)

I have two label components in actionscript: label1 and label2. I want to make it so that when the value of label1.text changes, the value of label2.text automatically changes to the same value.
3
votes
4answers
3k views

Copy object properties: reflection or serialization - which is faster?

I have two objects of the same type and need to copy property values from one object to another. There are two options: Use reflection, navigate through the properties of the first object and copy ...
0
votes
1answer
136 views

At what point in my code did this List<> become empty?

namespace Messages { public partial class Email { List<Document> attachments = new List<Document>(); protected void Page_Load(object sender, EventArgs e) { ...
0
votes
2answers
87 views

Java shallow and deep copying JLS [duplicate]

Possible Duplicate: Java pass by reference issue In my codes below, methodA will be called, which then delegates a call to methodB, in doing so, methodB assigns the input parameter with ...
-2
votes
7answers
393 views

Questions about a Segmentation Fault in C++ most likely caused by a custom copy constructor

I'm getting a segmentation fault which I believe is caused by the copy constructor. However, I can't find an example like this one anywhere online. I've read about shallow copy and deep copy but I'm ...
2
votes
2answers
1k views

Avoiding ConcurrentModificationException on List by making a shallow copy

I have a class like the following: class Test { private LinkedList<Person> persons = new LinkedList<Person>; public synchronized void remove(Person person) { ...
2
votes
3answers
1k views

VB.NET, Is Object Returned by Reference from Function

This should be a fairly common question, but I haven't found a straightforward answer anywhere. If I instantiate an object within a function in VB.NET and return it, does it return it be reference or ...
1
vote
1answer
497 views

Ruby object clone/copy

Overview I am creating objects in my ruby script from database queries that generates XML files. I have made it so only one XML file is processed at a time and all of the tags are generic so other ...
0
votes
1answer
1k views

Is vector::push_back() making a shallow copy & how to solve this

In the program I am writing, I have something similar to the code here: #include<iostream> #include<vector> #include<cstring> using namespace std; struct people { string name; ...
2
votes
2answers
322 views

How do I share elements between ArrayList and TreeSet in Java?

I want to modify the elements of the ArrayList and TreeSet simultaneously. Ex. When I modify an element from the TreeSet, the corresponding element in the Arraylist is modified too.
-4
votes
1answer
392 views

Shallow copying and Deep Copying in C++ [closed]

Difference between shallow copying and Deep copying with an example in c++?
1
vote
1answer
167 views

what's a shallow copy of a literal result element in XSLT?

regarding: A literal result element acts as an instruction to construct an element node with the same name in the result tree. The XSLT processor effectively creates a shallow copy of the ...
2
votes
3answers
311 views

Cloning a List - how is it done?

I want to make a shallow copy of a List I get returned by a method call (it's public List getScanResults () from Android, see ...
0
votes
5answers
886 views

What is the difference between being shallowly and deeply equal? How is this applied to caching?

Found the following in my notes, but I am unable to make sense of it: Primitive type wrapper classes implement caching for a limited number of values. This guarantees that a limited number of ...
0
votes
2answers
194 views

Basic Question about iPhone Object C Arrays and Deep and Pointer Copy

I am new to the iPhone / Mac space and this is probably a pretty basic question, I have done some searching and have not found the direct answer. I would like to know if the addObject method for ...

1 2