If you are using getters and setters, how should you name the private member variables? - Stack Overflow
most recent 30 from stackoverflow.com
2009-12-03T12:08:11Z
http://stackoverflow.com/feeds/question/169216
http://www.creativecommons.org/licenses/by-nc/2.5/rdf
http://stackoverflow.com/questions/169216/if-you-are-using-getters-and-setters-how-should-you-name-the-private-member-var
3
If you are using getters and setters, how should you name the private member variables?
Iain
2008-10-03T22:59:07Z
2008-10-04T01:08:05Z
<p>As kind of a follow up to <a href="http://stackoverflow.com/questions/111605/what-kind-of-prefix-do-you-use-for-member-variables">this question about prefixes</a>, 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?</p>
http://stackoverflow.com/questions/169216/if-you-are-using-getters-and-setters-how-should-you-name-the-private-member-var/169238#169238
1
Answer by Garry Shutler for If you are using getters and setters, how should you name the private member variables?
Garry Shutler
2008-10-03T23:06:49Z
2008-10-03T23:06:49Z
<p>In a case sensitive language I just use:</p>
<pre><code>private int myValue;
public int MyValue
{
get { return myValue; }
}
</code></pre>
<p>Otherwise I would use an underscore</p>
<pre><code>Private _myValue As Integer
Public ReadOnly Property MyValue As Integer
Get
Return _myValue
End Get
End Property
</code></pre>
http://stackoverflow.com/questions/169216/if-you-are-using-getters-and-setters-how-should-you-name-the-private-member-var/169243#169243
1
Answer by Matthew Scharley for If you are using getters and setters, how should you name the private member variables?
Matthew Scharley
2008-10-03T23:07:26Z
2008-10-03T23:07:26Z
<p>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 <code>Foo</code>):</p>
<ul>
<li>mFoo</li>
<li>m_foo</li>
<li>_foo</li>
<li>foo</li>
</ul>
http://stackoverflow.com/questions/169216/if-you-are-using-getters-and-setters-how-should-you-name-the-private-member-var/169245#169245
2
Answer by André for If you are using getters and setters, how should you name the private member variables?
André
2008-10-03T23:07:48Z
2008-10-03T23:07:48Z
<p>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.</p>
http://stackoverflow.com/questions/169216/if-you-are-using-getters-and-setters-how-should-you-name-the-private-member-var/169246#169246
6
Answer by David Arno for If you are using getters and setters, how should you name the private member variables?
David Arno
2008-10-03T23:07:52Z
2008-10-03T23:07:52Z
<p>This is a completely subjective question. There is no "better" way.</p>
<p>One way is:</p>
<pre><code>private int _x;
public get x():int { return _x; }
public set x(int val):void { _x = val; }
</code></pre>
<p>Another is:</p>
<pre><code>private int x;
public get X():int { return x; }
public set X(int val):void { x = val; }
</code></pre>
<p>Neither is the right answer. Each has style advantages and disadvantages. Pick the one you like best and apply it consistently.</p>
http://stackoverflow.com/questions/169216/if-you-are-using-getters-and-setters-how-should-you-name-the-private-member-var/169282#169282
5
Answer by Craig Walker for If you are using getters and setters, how should you name the private member variables?
Craig Walker
2008-10-03T23:18:26Z
2008-10-03T23:18:26Z
<p>I like prefixing fields with an underscore, as others have mentioned. </p>
<pre><code>private int _x;
</code></pre>
<p>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:</p>
<ol>
<li>It means you avoid having to write "this.x = x" for assignments (especially in setters and constructors).</li>
<li>It distinguishes your fields from your local variables/arguments. It's important to do this: fields are trickier to handle than locals, as their scope is wider / lifetime is longer. Adding in the extra character is a bit of a mental warning sign for coders.</li>
<li>In some IDEs, the underscore will cause the auto-complete to sort the fields to the top of the suggestion list. This makes it easier to see all the fields for the class in one block. This in turn can be helpful; on big classes, you may not be able to see the fields (usually defined at the top of the class) on the same screen as the code you're working on. Sorting them to the top gives a handy reference.</li>
</ol>
<p>(These conventions are for Java, but similar ones exist for other languages)</p>
<p>These things seems small but their prevalence definitely makes my life easier when I'm coding.</p>
http://stackoverflow.com/questions/169216/if-you-are-using-getters-and-setters-how-should-you-name-the-private-member-var/169472#169472
1
Answer by Gary Kephart for If you are using getters and setters, how should you name the private member variables?
Gary Kephart
2008-10-04T01:08:05Z
2008-10-04T01:08:05Z
<p>I <em>like</em> 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.</p>