In what cases I should use Array(Buffer) and List(Buffer). Only one difference that I know is that arrays are nonvariant and lists are covariant. But what about performance and some other characteristics?
|
feedback
|
Immutable StructuresThe Scala If you are coming from a Java background, then the obvious parallel is when to use Mutable Structures
A scala However, I think that the use of | ||||
feedback
|
|
In addition to the answers posted already, here are some specifics. While an Array[A] is literally a Java array, a List[A] is an immutable data structure that is either Performance differences
Memory differences
| ||||
|
feedback
|
|
An Array is mutable, meaning you can change the values of each index, while a List (by default) is immutable, meaning that a new list is created every time you do a modification. In most cases it is a more "functional" style to work with immutable datatypes and you should probably try and use a List with constructs like For performance characteristics, an Array is faster with random access to elements, whereas a List is faster when prepending (adding) new elements. Iterating over them is comparable. | |||||||||
feedback
|