Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I want to create a Scala class where one of its var is read-only from outside the class, but still a var. How can I do it?

If it was a val, there was no need to do anything. By default, the definition implies public access and read-only.

share|improve this question

2 Answers

up vote 23 down vote accepted

Define a public "getter" to a private var.

scala> class Foo {
     |   private var _bar = 0
     |
     |   def incBar() { 
     |     _bar += 1 
     |   }
     |
     |   def bar = _bar
     | }
defined class Foo

scala> val foo = new Foo
foo: Foo = Foo@1ff83a9

scala> foo.bar
res0: Int = 0

scala> foo.incBar()

scala> foo.bar
res2: Int = 1

scala> foo.bar = 4
<console>:7: error: value bar_= is not a member of Foo
       foo.bar = 4
           ^
share|improve this answer
1  
Thanks. Unfortunately this is the only solution :( It sucks because the var real name gets dirty just because of that. Better than exposing my guts. Thanks – Guilherme Silveira Jun 2 '11 at 14:46

Not sure what you want...

class foo {
  var dog : String = null
}

You can now do

val f = new foo
f.dog = "woof"
f.dog = "meow"
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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