What is the difference between declaring a field as val, lazy val and object inside a scala class, as in the following snippet:
class A
class B {
val a1 = new A { def foo = 1 }
object a2 extends A { def foo = 1 }
lazy val a3 = new A { def foo = 1 }
}
In the former, any code included is executed as soon as class B is created. In the latter, however, until you actually use the object, it won’t be instantiated.
You can see the difference here:
There are also hidden differences in what the created .class files are named and such; and of course the two have different types.