I read Scala Functions (part of Another tour of Scala). In that post he stated:
Methods and functions are not the same thing
But he didn't explain anything about it. What was he trying to say?
|
I read Scala Functions (part of Another tour of Scala). In that post he stated:
But he didn't explain anything about it. What was he trying to say? |
|||||
|
|
Jim has got this pretty much covered in his blog, but I'm posting a briefing here for reference. First, let's see what the Scala Specification tell us. Chapter 3 (types) tell us about Function Types (3.2.9) and Method Types (3.3.1). Chapter 4 (basic declarations) speaks of Value Declaration and Definitions (4.1), Variable Declaration and Definitions (4.2) and Functions Declarations and Definitions (4.6). Chapter 6 (expressions) speaks of Anonymous Functions (6.23) and Method Values (6.7). Curiously, function values is spoken of one time on 3.2.9, and no where else. A Function Type is (roughly) a type of the form (T1, ..., Tn) => U, which is a shorthand for the trait A Method Type is a non-value type. That means there is value -- no object, no instance -- with a method type. As mentioned above, a Method Value actually has a Function Type. A method type is a Value Declarations and Definitions and Variable Declarations and Definitions are A Function Declaration is a Finally, an Anonymous Function is an instance of a Function Type (ie, an instance of the trait That is what the specs say, so let me put this up-front: we do not use that terminology! It leads to too much confusion between so-called "function declaration", which is a part of the program (chapter 4 -- basic declarations) and "anonymous function", which is an expression, and "function type", which is, well a type -- a trait. The terminology below, and used by experienced Scala programmers, makes one change from the terminology of the specification: instead of saying function declaration, we say method. Or even method declaration. Furthermore, we note that value declarations and variable declarations are also methods for practical purposes. So, given the above change in terminology, here's a practical explanation of the distinction. A function is an object that includes one of the Let's see the type signature for one of these traits:
This trait has one abstract method (it has a few concrete methods as well):
And that tell us all that there is to know about it. A function has an That variance means that a Now, what is the similarity of a method and a function? Well, if
These calls are actually different, because the first one is just a syntactic sugar. Scala expands it to:
Which, of course, is a method call on object
Another similarity between a method and a function is that the former can be easily converted into the latter:
Scala will expand that, assuming
On Scala 2.8, it actually uses an Notice that one can't convert the other way around -- from a function to a method. Methods, however, have one big advantage (well, two -- they can be slightly faster): they can receive type parameters. For instance, while
I think this pretty much covers everything, but I'll be happy to complement this with answers to any questions that may remain. |
|||||||||||||||||
|
|
One big practical difference between a method and a function is what
Returning from a function defined in a method does a non-local return:
Whereas returning from a local method only returns from that method.
|
|||||||||
|
|
Functions don't support parameter defaults. Methods do. Converting from a method to a function loses parameter defaults. (Scala 2.8.1) |
|||
|
|