I observed a difference in Scala's type inference when applied to def and val.
Using def, I can define an abstract nullary method const returning some value of type Int => Int. When implementing const with a function literal, I need not supply a parameter type, as it can be inferred by the compiler:
trait D {
def const: Int => Int
}
object D extends D {
def const = i => i + 1
}
This is fine. (On the downside, a new function instance is being created for every access to D.const.)
Now consider an analogous construction using val:
trait V {
val const: Int => Int
}
object V extends V {
val const = i => i + 1
}
This will not compile, failing with
error: missing parameter type
val const = i => i + 1
^
Why?
val's in traits (can lead to surprising NPEs). Keep it adefin the trait and override it with avalin the implementation. Or begin with alazy val x: X = sys.error("override me")in the trait. – ron May 24 '12 at 15:48defand the equals sign=is treated as an identifier, whereas everything between thevaland the equals sign=is treated as a pattern. Just a wild guess... – agilesteel May 24 '12 at 15:55defin the trait and avalin the implementation leads to the same issue. – knuton May 24 '12 at 17:15