Scala

31 / 53

Scala - Function Representations




Not able to play video? Try with youtube

We have already discussed functions. We can write a function in different styles in Scala. The first style is the usual way of defining a function. Please note that the return type is specified as Int.

In the second style, please note that the return type is omitted, also there is no "return" keyword. The Scala compiler will infer the return type of the function in this case.

If the function body has just one statement, then the curly braces are optional. In the third style, please note that there are no curly braces.


Loading comments...