In Scala, arrays are always passed by reference, call-by-name, right?
So,
def fun(ar: Array[Int]) = {}
is equal to
def fun(ar: => Array[Int]) = {}
thanks.
|
In Scala, arrays are always passed by reference, call-by-name, right? So,
is equal to
thanks. |
|||||||||||||||
|
No. In Scala, just like in Java, C, C++ (by default), C# (by default), Smalltalk, Ruby, Python and pretty much every other object-oriented language ever created, arguments are passed by value. You can explicitly declare a by-name-parameter, and then (but only then) the arguments corresponding to that parameter will be passed by name. Scala will never pass by reference.
No, it is not. In the first case, the array (or rather the pointer to the array) will be passed by value, and in the second case by name. In neither case will it be passed by reference. |
|||
|
|
|
For further clarification, the following quote from Wikipedia might be helpful:
For a C++ programmer, there are imho two points that may lead to confusion when confronted with the terminology used for Scala/Java:
|
|||||||
|