- About Scala
- Documentation
- Code Examples
- Software
- Scala Developers
Re: lazy val
Tue, 2009-01-20, 14:05
>>>>> "Luc" == Luc Duponcheel writes:
Luc> FYI: try the following
scala> lazy val foo = { println("evaluating") ; "foo" }
Luc> evaluating foo: java.lang.String = foo
Luc> Note that, when *defining* the lazy value foo, the definition of
Luc> foo *is*evaluated.
This statement is misleading at best. The only reason foo is evaluated
immediately in your example is so the interpreter can print the value.
The entire purpose of "lazy val" is to *not* evaluate the body at
definition time, but wait until the first use.
It would be nice if the interpreter were changed so this didn't happen,
actually. I opened a ticket:
http://lampsvn.epfl.ch/trac/scala/ticket/1655