Reputation: 20581
In my application I need ability to swap elements in collection. So I have a choice:
val
var
(and always reassign new collection to var
)But in Scala (in functional programming) mutability always avoided. So what is less worse: mutable collection declared using val
or immutable collection declared as var
?
Upvotes: 9
Views: 1535
Reputation: 24040
Agreed with Rex, the biggest concern is whether you are sharing the collection. In that case use immutable. Another alternative:
@volatile
private var myList = immutable.List.empty[Foo]
def theList = myList
Upvotes: 0
Reputation: 26486
If you use a var
holding an immutable collection you can publish it fairly freely (though you may want to mark the var
as @volatile
). At any given time other code can get only a particular snapshot of that state which can never change.
If you use a val
holding a mutable collection instance, then you must guard it carefully, since it can be witnessed in inconsistent states while being updated.
Upvotes: 4
Reputation: 5449
One safe method I've used works something like this.. first hide your var to make it thread safe like this:
private[this] val myList: scala.collection.mutable.(whatever)
private[this] restricts a variable not only to this class, but only to this exact instance. No other variable can access it.
Next, make a helper function to return an immutable version of it whenever something external needs to work with it:
def myListSafe = myList.toList (or some other safe conversion function like toMap, etc)
You might get some overhead doing these conversions, but it gives you the flexibility of using a mutable collection safely within the class - while providing the chance to export it thread safe when needed. As you have pointed out the other option is to continuously mutate a var pointing to an immutable collection.
Upvotes: 1
Reputation: 167891
This really depends on whether you need to share that collection widely. The advantage of a mutable collection is that it is usually faster than the immutable collection, and it's easier to have a single object to pass around rather than having to make sure you can set a var from different contexts. But since they can change out from under you, you have to be careful even in a single-threaded context:
import collection.mutable.ArrayBuffer
val a = ArrayBuffer(1,2,3,4)
val i = a.iterator
i.hasNext // True
a.reduceToSize(0)
i.next // Boom!
java.lang.IndexOutOfBoundsException: 0
at scala.collection.mutable.ResizableArray$class.apply(ResizableArray.scala:43)
...
So if it's going to be widely used, you should consider whether you can be appropriately careful to avoid problems like this. It's generally safer to use a var
to an immutable collection; then you might get out of date, but at least you won't fall on your face with a segfault.
var v = Vector(1,2,3,4)
val i = v.iterator
i.hasNext // True
v = Vector[Int]()
i.next // 1
Now, however, you have to pass v
as a return value from any method that might modify it (outside of the class that contains it, at least). This also can cause problems if you forget to update the original value:
var v = Vector(1,2,3,4)
def timesTwo = v.map(_ * 2)
timesTwo
v // Wait, it's still 1,2,3,4?!
But then this doesn't update either, does it?:
a.map(_ * 2) // Map doesn't update, it produces a new copy!
So, as a general rule,
but you should probably violate this as often as you stick to it.
Upvotes: 10
Reputation: 12998
Reassignments to a var
might be hard to read/maintain, especially if this happens at multiple locations in a method, for example.
So with a val
, you get at least an immutable reference.
Generally speaking the scope of a mutable collection should be as small as possible. So after you have filled the mutable collection completely (in case of a short-lived buffer), you could turn it into an immutable one, for example to return this as the result of a method.
As dbyrne has pointed out correctly:
If it's not possible to convert the mutable collection into an immutable one (if you are implementing a cache for example), and the mutable collection is part of the public API, then a var
might be better. Another option in this case is to create an immutable copy in the method which implements the public API.
Upvotes: 0
Reputation: 62835
Mutability is the beast that you would be better to keep in a cage. Ideally, in well-tested and highly used type of cage like scala mutable collection is.
Upvotes: 1