This page is no longer maintained — Please continue to the home page at www.scala-lang.org

A singleton that performs side-effects on "construction"

1 reply
Martin S. Weber
Joined: 2008-12-23,
User offline. Last seen 42 years 45 weeks ago.

Well, seems laziness keeps catching me and doesn't want to let me off-hook.
Now there's the objects in scala, which are nice singletons. But they don't
construct themselves as do the classes. Compare e.g.

class A1 {
case object X
println(" ... ")
}

and

object A2 {
case object X
println(" --- ")
}

even

new (A1.X) == A2.X

won't trigger the body of object A2 being executed. Is this considered a
feature btw? So how can I write code that is run inside the object when it's
"constructed" [without explicitely calling it myself] ?

-Martin

Ricky Clarkson
Joined: 2008-12-19,
User offline. Last seen 3 years 2 weeks ago.
Re: A singleton that performs side-effects on "construction"

> Well, seems laziness keeps catching me and doesn't want to let me off-hook.

I think you mean side-effects, not laziness.

Can you show the code that gave NPEs?

Copyright © 2012 École Polytechnique Fédérale de Lausanne (EPFL), Lausanne, Switzerland