I know this might be a stupid question to many but I usually like to stick to correct/better implementation. In Java, when writing a getter/setter, would it be better to refer to the instance variable with this or access it directly?
Thanks
|
I know this might be a stupid question to many but I usually like to stick to correct/better implementation. In Java, when writing a getter/setter, would it be better to refer to the instance variable with Thanks |
||||
|
|
It does not really matter as long as you refer to the proper variables. Yet, it is a common practice to refer to the local fields with
|
|||
|
|
|
When writing a setter you are typically forced to refer to the instance variable (not the local variable) using
However, when writing a getter method there is typically no need to prefix the instance variable with this:
|
|||
|
|
|
That is simply a matter of taste, although it has some particular use cases. When subclassing, It's also commonly used to disambiguate parameters from local variables. E.g.,
|
|||
|
|
|
Specifying It's not necessary, though. |
|||
|
|