|
Scala example source code file (t3670.scala)
The Scala t3670.scala source code
class A {
val n = {
val z = {
lazy val bb = 1
bb
}
val a = {
lazy val cc = 2
cc
}
lazy val b = {
lazy val dd = 3
dd
}
z
}
}
class B {
locally {
lazy val ms = "as"
ms
}
}
class C {
val things = List("things")
if(things.size < 100) {
lazy val msg = "foo"
msg
}
}
class D {
val things = List("things")
if(things.size < 100) {
if (things.size > 10) {
lazy val msg = "foo"
msg
}
}
}
Other Scala examples (source code examples)Here is a short list of links related to this Scala t3670.scala source code file: |
| ... this post is sponsored by my books ... | |
#1 New Release! |
FP Best Seller |
Copyright 1998-2024 Alvin Alexander, alvinalexander.com
All Rights Reserved.
A percentage of advertising revenue from
pages under the /java/jwarehouse
URI on this website is
paid back to open source projects.