Scala
Values cannot be re-assigned
The type of a value can be omitted and inferred, or it can be explicitly stated:
val x: Int = 1 + 1
Variables are like values, except you can re-assign them. You can define a variable with the
var
keyword.
Methods
Methods are defined with the def
keyword.
A method can take multiple parameter lists:
The last expression in the body is the method’s return value. (Scala does have a return
keyword, but it is rarely used.
Classes
The return type of the method greet
is Unit
, which signifies that there is nothing meaningful to return. It is used similarly to void
in Java and C.
Last updated
Was this helpful?