Tagged Questions
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
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 ...