Tagged Questions
The shallow-copy tag has no wiki summary.
17
votes
5answers
3k views
Python list slice syntax used for no obvious reason
I occasionally see the list slice syntax used in Python code like this:
newList = oldList[:]
Surely this is just the same as:
newList = oldList
Or am I missing something?
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, ...
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 ...
13
votes
10answers
2k views
Can I use memcpy in C++ to copy classes that have no pointers or virtual functions
Say I have a class, something like the following;
class MyClass
{
public:
MyClass();
int a,b,c;
double x,y,z;
};
#define PageSize 1000000
MyClass Array1[PageSize],Array2[PageSize];
If my ...
4
votes
3answers
286 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?
4
votes
2answers
1k views
How to copy a list in Scala
I want to shallow copy a list in Scala.
I wanted to do somehing like:
val myList = List("foo", "bar")
val myListCopy = myList.clone
But the clone method is protected.
4
votes
3answers
355 views
How do strings work when shallow copying something in C#?
Strings are considered reference types yet can act like values. When shallow copying something either manually or with the MemberwiseClone(), how are strings handled? Are they considred separate and ...
3
votes
6answers
548 views
Default assigment operator= in c++ is a shallow copy?
Just a simple quick question which I couldn't find a solid answer to anywhere else. Is the default operator= just a shallow copy of all the class' members on the right hand side?
Class foo {
public:
...
3
votes
5answers
322 views
Copying objects to 'this' object in C#
I have a certain hirerchy of classes that needs the capeability to copy all public properties from one object to another.
Each class has a certain set of public properties that might differ from any ...
3
votes
1answer
770 views
How do I make a shallow copy of a Perl hash reference?
I want to push a reference to a hash. By that I mean I want to push a reference to a new hash that is a shallow copy of the hash I am given.
How do I create the shallow copy?
3
votes
7answers
6k views
In Java, what is a shallow copy?
java.util.Calendar.clone() returns "...a new Calendar with the same properties" and returns "a shallow copy of this Calendar".
This does not appear to be a shallow copy as answered here on SO. That ...
3
votes
4answers
272 views
Shallow Copy - Reference type anomalous nature
I cannot understand the output of the two sets of code snippets given below.
How don't really get the concept of shallow copy. How can it be explained?
Class:
public class Person : ICloneable
{
...
3
votes
4answers
1k views
How would you improve this shallow copying class?
I've written a class with a single static method that copies property values from one object to another. It doesn't care what type each object is, only that they have identical properties. It does ...
2
votes
1answer
52 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> ...
2
votes
3answers
215 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
290 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
2answers
754 views
Is shallow copy sufficient for structures with char[]?
I have a structure containing character arrays with no any other member functions. I am doing assignment operation between two instances of these structures. If I'm not mistaken, it is doing shallow ...
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 ...
2
votes
2answers
749 views
Question about array shallow copy in C#
Just to make sure I'm understanding shallow copies of reference types correctly and that I'm not constructing a huge memory leak here:
// Adds text to the beginning of the log RTB
// Also keeps the ...
1
vote
4answers
135 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
2answers
116 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)
{
...
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
2answers
104 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.
1
vote
1answer
84 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 ...
1
vote
3answers
128 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 ...
1
vote
4answers
232 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
98 views
What does it mean for .slice() to be a “shallow clone”?
ActionScript's Array and Vector classes both have a slice() method. If you don't pass any parameters, the new Array or Vector is a duplicate (shallow clone) of the original Vector.
What does it mean ...
1
vote
2answers
270 views
Shallow copy of an object in an intent in android
I have a few objects I want to pass to other activities through intents. However, they only need to be shallow copies of the other object, as they are only going to be read (and even if they were ...
1
vote
2answers
293 views
.net memberwiseclone shallow copy not working
I am using this.MemberwiseClone() to create shallowcopy but it is not working. Please look at the code below.
public class Customer
{
public int Id;
public string Name;
...
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 ...
1
vote
3answers
491 views
Shallow Copy From Inherited Classes
Ok so I have an abstract base class called Product, a KitItem class that inherits Product and a PackageKitItem class that inherits KitItem. ie.
Product
KitItem : Product
PackageKitItem : KitItem
I ...
0
votes
3answers
60 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
1answer
78 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
21 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.
0
votes
1answer
112 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
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
1answer
196 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;
...
0
votes
5answers
205 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
140 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
3answers
191 views
What are problems with shallow copy? [closed]
This is an interview question I saw from here:
http://www.careercup.com/question?id=1707701
Want to know more about this .thanks
0
votes
1answer
141 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
161 views
How to shallow copy app engine model instance to create new instance?
I want to implement a simple VersionedModel base model class for my app engine app. I'm looking for a pattern that does not involve explicitly choosing fields to copy.
I am trying out something like ...
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 ...
0
votes
1answer
155 views
Do shallow copies share pointers? (C++)
I know that if I do something like this:
class Obj
{
public:
int* nine;
};
Obj Obj1; //Awesome name
int eight = 8;
Obj1.nine = &eight;
Obj Obj2 = Obj1; //Another Awesome name
then Obj1's ...
-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++?