vote up 9 vote down star

In Scala, a class's primary constructor has no explicit body, but is defined implicitly from the class body. How, then, does one distinguish between fields and local values (i.e. values local to the constructor method)?

For example, take the following code snippet, a modified form of some sample code from "Programming in Scala":

class R(n: Int, d: Int) {
   private val g = myfunc
   val x = n / g
   val y = d / g
}

My understanding is that this will generate a class with three fields: a private "g", and public "x" and "y". However, the g value is used only for calculation of the x and y fields, and has no meaning beyond the constructor scope.

So in this (admittedly artificial) example, how do you go about defining local values for this constructor?

flag

74% accept rate

3 Answers

vote up 14 vote down check

E.g.

class R(n: Int, d: Int) {
  val (x, y) = {
    val g = myfunc
    (n/g, d/g)
  }
}
link|flag
Ah, simple really. I'm still getting my intuition around the functional concept. – skaffman Jul 13 at 12:30
12  
This will actually add a hidden Tuple2 field to your class. – Jorge Ortiz Jul 13 at 16:45
This can be important. Thank you for the comment, Jorge. – Alexander Azarov Jul 13 at 18:06
vote up 3 vote down

Some discussion on this topic, including Martin Odersky's comments, is here

link|flag
That's the exact example from the book that triggered my question :) I suppose it means I was paying attention... – skaffman Jul 13 at 23:29
vote up 3 vote down

There are a few ways to do that. You can declare such temporary variables inside private definitions, to be used during construction time. You can use temporary variables inside blocks which return expressions (such as in Alaz's answer). Or, finally, you can use such variables inside alternate constructors.

In a manner similar to the alternate constructors, you could also define them inside the object-companion's "apply" method.

What you can't do is declare a field to be "temporary".

Note also that any parameter received by the primary constructor is a field also. If you don't want such parameters to become fields, and don't want to expose the actual fields in a constructor, the usual solution is to make the primary constructor private, with the actual fields, and use either an alternate constructor or an object-companion's apply() as the effective "primary" constructor.

link|flag
Thanks for the clarification. – skaffman Jul 13 at 12:32

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.