Tagged Questions
18
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?
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.
1
vote
2answers
156 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
3answers
135 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
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)
{
...