Tagged Questions
4
votes
3answers
288 views
Does LINQ new up memory when creating returns
Does LINQ actually perform a deep copy of the results to a different list/array/etc, or does it simply give me a list/array/etc. composed of references to the original?
2
votes
3answers
218 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 ...
2
votes
8answers
291 views
Is clone() in java shallow copy?
Is clone() in java a shallow copy?
Eventually this gets to the clone()
method of Object (the uppermost
class), which creates a new instance
of the same class as the object and
copies all ...
2
votes
4answers
2k views
Shallow/deep copy of std::map
How would I best implement these? I thought of something like this:
using namespace std;
shape_container
shape_container::clone_deep () const
{
shape_container* ptr = new ...
1
vote
4answers
137 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 ...
1
vote
1answer
90 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 ...
1
vote
4answers
233 views
Shallow vs. Deep Copies in Immutable Objects
Good morning, afternoon or night,
When implementing a given class as an immutable one, with no methods or properties exposing private/internal fields in any way, is shallow copying a bad practice or ...
1
vote
1answer
408 views
What are the implications of performing a shallow copy on an array in order to resize it?
If my understanding of deep and shallow copying is correct my question is an impossible one.
If you have an array (a[10]) and perform a shallow copy (b[20]) wouldn't this be impossible as the data in ...
0
votes
3answers
66 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 = { ...
0
votes
2answers
51 views
Java shallow and deep copying JLS [closed]
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 ...
0
votes
5answers
207 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
141 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 ...
0
votes
1answer
142 views
Creating clone of an object not working with virtual base class
#include<iostream>
using namespace std;
class Something
{
public:
int j;
Something():j(20) {cout<<"Something initialized. j="<<j<<endl;}
};
class Base
{
private:
...
0
votes
1answer
28 views
Library of Objects - Access Index Value or Object Itself? (e.g., deep vs. shallow copy perhaps?)
I've always been confused/unsure about how .Net copies references.
Let's say I have a Bitmap object for GDI+.
dim foo as new bitmap("c:\foo.bmp")
'Foo' holds the bitmap object.
Now let's say I do ...
-2
votes
7answers
143 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 ...
-4
votes
1answer
107 views
Shallow copying and Deep Copying in C++ [closed]
Difference between shallow copying and Deep copying with an example in c++?