As kind of a follow up to this question about prefixes, I agree with most people on the thread that prefixes are bad. But what about if you are using getters and setters? Then you need to differeniate the publicly accessible getter name from the privately stored variable. I normally just use an underscore, but is there a better way?
|
1
|
|
|
|
|
|
This is a completely subjective question. There is no "better" way. One way is:
Another is:
Neither is the right answer. Each has style advantages and disadvantages. Pick the one you like best and apply it consistently. |
||
|
|
|
|
In a case sensitive language I just use:
Otherwise I would use an underscore
|
||||
|
|
|
There are almost as many different ways of doing this as there are programmers doing this, but some of the more popular ways include (for a property
|
|||
|
|
|
|
In java there is this.foo in python there is self.foo and other languages have similar things, so I don't see a need for naming something in a special way, when I can already use a language construct. In the same context good IDEs and editors understand member variables and give them a special highlight, so you can really see it w/o using special names. |
||
|
|
|
|
I like prefixing fields with an underscore, as others have mentioned.
I think this goes beyond straight personal preference though (as David Arno said in this thread). I think there's some real objective reasons for doing this:
(These conventions are for Java, but similar ones exist for other languages) These things seems small but their prevalence definitely makes my life easier when I'm coding. |
||||
|
|
|
I like writing "this.x = x". It's very clear to me. Plus, when using Eclipse, you can have it automatically generate your getters/setters this way. |
||
|
|
