I have MyObject and MyTrait:
class MyObject(private val myname: String = "") extends MyTrait {
_name = myname
def foo(myname : String) {
_name = myname
}
}
trait MyTrait {
protected var _name: String = _
def name = _name
}
This works fine as this
val myObject = new MyObject("abc")
println(myObject.name)
myObject.foo("def")
println(myObject.name)
prints
abc
def
as expected.
Problem now is that I want MyTrait._name to be a val instead of a var. But there is no way I can manage to get this to compile. Any hints appreciated.
Regards, Oliver
Here is an answer that uses the very latest cutting-edge naming conventions from Rex Kerr and Martin Odersky!
Read it on the scala-debate list. And you thought they sit around working on "higher kinds" and computing with unboxed ints.
There is a PR for the style changes, but this convention will have to wait a bit.
Doc Martin says:
That does look promising. I have to experiment with it a little.
So be careful with this stuff; it's experimental and probably chemically unstable.
The style guide has a section on brevity but is itself not brief. I'm sure there are answers on SO about "prefer def over val in traits" by Daniel Sobral. And don't forget to consult the one-question FAQ when you encounter init-order problems.