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.
|
I want to shallow copy a list in Scala. I wanted to do somehing like:
But the clone method is protected.
| |||
|
show 1 more comment
feedback
|
|
To filter a list:
You can also use the wildcard to save a few characters:
Note that, as commented above, lists are immutable. That means that these operations do not modify the original list, but actually create a new list. | |||
|
feedback
|
|
Here's a non-answer: don't do that. A Let's consider a few operations:
Neither Let's explain this in detail. The constructor
And Now, when you assign
Of course, since there's a reference to Now
The important point about all these objects, though, is that they can't be changed. There are no setters, nor any methods that will change any of their properties. They'll be forever having the same values/reference in their "head" (that's what we call the first element), and the same references in their "tail" (that's what we call the second element). However, there are methods that look like their are changing the list. Rest assured, however, that they are creating new lists. For instance:
The method map creates a completely new list, of the same size, where new element may be computed from a corresponding element in
While
This does not create a new list. Instead, it simply assigns to
Again, no new list created.
This, however, creates a new list, precisely because it can't change the first element of Here's a few additional implementation details:
| |||
|
feedback
|
myList.remove(s => s startsWith "f"), a new list is created wherefoois removed.myListremains intact. Lists are immutable in Scala by default, as Alexander Azarov already said. – Flaviu Cipcigan Sep 18 '09 at 18:35