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

Access Fields Directly (not using getters)

2 replies
Drew
Joined: 2011-12-16,
User offline. Last seen 42 years 45 weeks ago.

Hi All,

How can I force Scala to access a field directly and not use a getter method (without using private[this]) ?

See the example

class User(var id: Int, var name: String) {
def doSomething = {
println(id)
}
}

If I decompile the generated Java class, I see that the method doSomething() uses the accessor method id() to get the value of id.

Thanks,

Drew

Alec Zorab
Joined: 2010-05-18,
User offline. Last seen 42 years 45 weeks ago.
Re: Access Fields Directly (not using getters)

I don't understand why you care? The jvm will optimise out the
function call if it gets used enough to matter...

On 30 December 2011 20:07, Drew Kutcharian wrote:
> Hi All,
>
> How can I force Scala to access a field directly and not use a getter method (without using private[this]) ?
>
>
> See the example
>
> class User(var id: Int, var name: String) {
>        def doSomething = {
>                println(id)
>        }
> }
>
> If I decompile the generated Java class, I see that the method doSomething() uses the accessor method id() to get the value of id.
>
> Thanks,
>
> Drew

Erik Engbrecht
Joined: 2008-12-19,
User offline. Last seen 3 years 18 weeks ago.
Re: Access Fields Directly (not using getters)

If you declare the var as private[this] you will get direct field access from within the class, but of course you will not be able to access it from outside the class.

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