0
votes
1answer
95 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 …
3
votes
2answers
193 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.
2
votes
2answers
370 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 …
3
votes
4answers
159 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 Perso …
2
votes
3answers
172 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 co …
2
votes
4answers
482 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 pr …
1
vote
1answer
231 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 imposs …
11
votes
4answers
781 views
Python list slice used for no obvious reason
I occasionally see a list slice like this used in Python code:
newList = list[:]
Surely this is just the same as:
newList = list
Or am I missing something?
