What kind of prefix do you use for member variables? - Stack Overflow most recent 30 from stackoverflow.com2009-12-16T20:23:46Zhttp://stackoverflow.com/feeds/question/111605http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/111605/what-kind-of-prefix-do-you-use-for-member-variables10What kind of prefix do you use for member variables?koschi2008-09-21T18:19:58Z2009-06-05T00:27:44Z
<p>No doubt, it's essential for understanding code to give member variables a prefix so that they can easily be distinguished from "normal" variables.</p>
<p>But what kind of prefix do you use?</p>
<p>I have been working on projects where we used <strong>m_</strong> as prefix, on other projects we used an underscore only (which I personally don't like, because an underscore only is not demonstrative enough).</p>
<p>On another project we used a long prefix form, that also included the variable type. <strong>mul_</strong> for example is the prefix of a <strong>m</strong>ember variable of type <strong>u</strong>nsigned <strong>l</strong>ong.</p>
<p>Now let me know what kind of prefix you use (and please give a reason for it).</p>
<p><strong>EDIT:</strong> Most of you seem to code without special prefixes for member variables! Does this depend on the language? From my experience, <strong>C++ code</strong> tends to use an underscore or <strong>m_</strong> as a prefix for member variables. What about other languages?</p>
http://stackoverflow.com/questions/111605/what-kind-of-prefix-do-you-use-for-member-variables/111608#11160811Answer by Matt Howells for What kind of prefix do you use for member variables?Matt Howells2008-09-21T18:21:02Z2008-09-21T18:21:02Z<p>Underscore only.</p>
<p>In my case, I use it because that's what the coding standards document says at my workplace. However, I cannot see the point of adding m_ or some horrible Hungarian thing at the beginning of the variable. The mimimalist 'underscore only' keeps it readable.</p>
http://stackoverflow.com/questions/111605/what-kind-of-prefix-do-you-use-for-member-variables/111616#1116160Answer by Rob Wells for What kind of prefix do you use for member variables?Rob Wells2008-09-21T18:22:37Z2008-09-21T18:22:37Z<p>Your mul_ example is heading towards Charles Simonyi's Apps Hungarian notation.</p>
<p>I prefer keeping things simple and that's why I like using m_ as the prefix.</p>
<p>Doing this makes it much easier to see where you have to go to see the original declaration.</p>
http://stackoverflow.com/questions/111605/what-kind-of-prefix-do-you-use-for-member-variables/111618#11161832Answer by Paul Tomblin for What kind of prefix do you use for member variables?Paul Tomblin2008-09-21T18:24:10Z2008-09-21T18:24:10Z<p>None. I used to use underscore, but was talked out of it on a project where the others didn't like it, and haven't missed it. A decent IDE or a decent memory will tell you what's a member variable and what isn't. One of the developers on our project insists on putting "this." in front of every member variable, and we humour him when we're working on areas of code that are nominally "his".</p>
http://stackoverflow.com/questions/111605/what-kind-of-prefix-do-you-use-for-member-variables/111619#1116190Answer by Florian Bösch for What kind of prefix do you use for member variables?Florian Bösch2008-09-21T18:24:23Z2008-09-21T18:24:23Z<p>None if it's not necessary, single underscore otherwise. Applies for python.</p>
http://stackoverflow.com/questions/111605/what-kind-of-prefix-do-you-use-for-member-variables/111622#11162216Answer by petr k. for What kind of prefix do you use for member variables?petr k.2008-09-21T18:24:33Z2008-09-21T18:33:40Z<p>I do not use any prefix at all. If I run into danger of mixing up local variables or method parameters with class members, <strong>then either the method or the class is too long and benefits from splitting up</strong>.</p>
<p>This (arguably) not only makes the code more readable and somewhat "fluent", but most importantly <strong>encourages well structured classes and methods</strong>. In the end, it thus boils down to a completely different issue than the prefix or no-prefix dillema.</p>
http://stackoverflow.com/questions/111605/what-kind-of-prefix-do-you-use-for-member-variables/111625#11162514Answer by Kevin Conner for What kind of prefix do you use for member variables?Kevin Conner2008-09-21T18:25:28Z2008-10-03T22:41:01Z<blockquote>
<p>No doubt, it's essential for understanding code to give member variables a prefix so that they can easily be distinguished from "normal" variables.</p>
</blockquote>
<p>I dispute this claim. It's not the least bit necessary if you have half-decent syntax highlighting. A good IDE can let you write your code in readable English, and can show you the type and scope of a symbol other ways. Eclipse does a good job by highlighting declarations and uses of a symbol when the insertion point is on one of them.</p>
<p>Edit, thanks slim: A good syntax highlighter like Eclipse will also let you use bold or italic text, or change fonts altogether. For instance, I like italics for static things.</p>
<p>Another edit: Think of it this way; the type and scope of a variable are secondary information. It should be available and easy to find out, but not shouted at you. If you use prefixes like <code>m_</code> or types like <code>LPCSTR</code>, that becomes noise, when you just want to read the primary information – the intent of the code.</p>
<p>Third edit: This applies regardless of language.</p>
http://stackoverflow.com/questions/111605/what-kind-of-prefix-do-you-use-for-member-variables/111627#1116272Answer by Greg Beech for What kind of prefix do you use for member variables?Greg Beech2008-09-21T18:26:16Z2008-09-21T18:35:08Z<p>It kinda depends what language you're working in. </p>
<p>In C# you can reference any member using the 'this' prefix, e.g. 'this.val', which means no prefixes are needed. VB has a similar capability with 'Me'.</p>
<p>In languages where there is a built-in notation for indicating member access I don't see the point in using a prefix. In other languages, I guess it makes sense to use whatever the commonly accepted convention is for that language.</p>
<p>Note that one of the benefits of using a built-in notation is that you can also use it when accessing properties and methods on the class without compromising your naming conventions for those (which is particularly important when accessing non-private members). The main reason for using any kind of indicator is as a flag that you are causing possible side effects in the class, so it's a good idea to have it when using other members, irrespective of whether they are a field/property/method/etc.</p>
http://stackoverflow.com/questions/111605/what-kind-of-prefix-do-you-use-for-member-variables/111628#1116282Answer by Assaf for What kind of prefix do you use for member variables?Assaf2008-09-21T18:26:38Z2008-09-21T18:26:38Z<p>It really depends on the language.
I'm a C++ guy, and prefixing everything with underscore is a bit tricky. The language reserves stuff that begins with underscore for the implementation in some instances (depending on scope). There's also special treatment for double underscore, or underscore following by a capital letter. So I say just avoid that mess and simply choose some other prefix. 'm' is ok IMO. 'm_' is a bit much, but not terrible either. A matter of taste really.</p>
<p>But watch out for those _leadingUnderscores. You'll be surprised how many compiler and library internals are so named, and there's definitely room for accidents and mixup if you're not extremely careful. Just say no.</p>
http://stackoverflow.com/questions/111605/what-kind-of-prefix-do-you-use-for-member-variables/111647#1116475Answer by Jakub Kotrla for What kind of prefix do you use for member variables?Jakub Kotrla2008-09-21T18:32:15Z2008-09-21T18:32:15Z<p>I prefer using <code>this</code> keyword.
That means <code>this.data</code> or <code>this->data</code> instead of some community dependant naming.</p>
<p>Because</p>
<ul>
<li>with nowadays IDEs typing <code>this.</code> popups intellinsense</li>
<li>its obvious to everyone without knowing defined naming</li>
</ul>
<p>BTW prefixing variables with letters to denote their type is outdated with good IDEs. And remembers me of this <a href="http://www.joelonsoftware.com/articles/Wrong.html" rel="nofollow">Joel's article</a></p>
http://stackoverflow.com/questions/111605/what-kind-of-prefix-do-you-use-for-member-variables/111654#1116544Answer by Rob for What kind of prefix do you use for member variables?Rob2008-09-21T18:35:00Z2008-09-21T18:35:00Z<p>It depends on which framework I'm using! If I'm writing MFC code then I use <strong>m_</strong> and Hungarian notation. For other stuff (which tends to be STL/Boost) then I add an underscore suffix to all member variables and I don't bother with Hungarian notation.</p>
<p><strong>MFC Class</strong></p>
<pre><code>class CFoo
{
private:
int m_nAge;
CString m_strAddress;
public:
int GetAge() const { return m_nAge; }
void SetAge(int n) { m_nAge = n; }
CString GetAddress() const { return m_strAddress;
void SetAddress(LPCTSTR lpsz) { m_strAddress = lpsz; }
};
</code></pre>
<p><strong>STL Class</strong></p>
<pre><code>class foo
{
private:
int age_;
std::string address_;
public:
int age() const { return age_; }
void age(int a) { age_ = a; }
std::string address() const { return address_; }
void address(const std::string& str) { address_ = str; }
};
</code></pre>
<p>Now this may seem a bit odd - two different styles - but it works for me, and writing a lot of MFC code that doesn't use the same style as MFC itself just looks ugly.</p>
http://stackoverflow.com/questions/111605/what-kind-of-prefix-do-you-use-for-member-variables/111656#1116560Answer by Thorsten79 for What kind of prefix do you use for member variables?Thorsten792008-09-21T18:35:04Z2008-09-21T18:35:04Z<p>I tend to use m_ in C++, but wouldn't mind to leave it away in Java or C#. And it depends on the coding standard. For legacy code that has a mixture of underscore and m_ I would refactor the code to one standard (given a reasonable code size)</p>
http://stackoverflow.com/questions/111605/what-kind-of-prefix-do-you-use-for-member-variables/111672#1116724Answer by Seb Nilsson for What kind of prefix do you use for member variables?Seb Nilsson2008-09-21T18:42:06Z2008-09-22T09:48:41Z<p>Using C#, I've moved from the 'm_'-prefix to <strong>just an underscore</strong>, since 'm_' is <strong>an heritage from C++</strong>.</p>
<p>The official Microsoft Guidelines tells you not to use any prefixes, and to <strong>use camel-case on private members</strong> and <strong>pascal-case on public members</strong>. The problem is that this collides with another guideline from the same source, which states that <strong>you should make all code compatible with all languages used in .NET</strong>. For instance, VB.NET doesn't make a difference between casings.</p>
<p>So just an underscore for me. This also makes it easy to access through IntelliSense, and external code only calling public members don't have to see the visually messy underscores.</p>
<p>Update: I don't think the <strong>C# "this."-prefix</strong> helps out the "Me." in VB, which will still see "Me.age" the same as "Me.Age".</p>
http://stackoverflow.com/questions/111605/what-kind-of-prefix-do-you-use-for-member-variables/111678#1116780Answer by chuck for What kind of prefix do you use for member variables?chuck2008-09-21T18:43:44Z2008-09-21T18:43:44Z<p>I use @.</p>
<p>:D j/k -- but if does kind of depend on the language. If it has getters/setters, I'll usually put a _ in front of the private member variable and the getter/setter will have the same name without the _. Otherwise, I usually don't use any.</p>
http://stackoverflow.com/questions/111605/what-kind-of-prefix-do-you-use-for-member-variables/111719#1117190Answer by Phenwoods for What kind of prefix do you use for member variables?Phenwoods2008-09-21T18:53:13Z2008-09-21T18:53:13Z<p>If it is really necessary to prefix member variables, I would definitely prefer <code>m_</code> to just an underscore. I find an underscore on its own reduces readability, and can be confused with C++ reserved words.</p>
<p>However, I do doubt that member variables need any special notation. Even ignoring IDE help, it isn't obvious why there would be confusion between what is a local and what is a member variable.</p>
http://stackoverflow.com/questions/111605/what-kind-of-prefix-do-you-use-for-member-variables/111736#1117361Answer by VonC for What kind of prefix do you use for member variables?VonC2008-09-21T18:57:31Z2008-09-21T18:57:31Z<p>another trick is <strong>naming convention</strong>:</p>
<p>All member variables are named as usual, without any prefix (or 'this.' is it is usual to do so in the project)</p>
<p>But they will be easily differentiated from local variable because in my project, those local variables are always named:</p>
<ul>
<li><strong>a</strong>Something: represents one object.</li>
<li><strong>some</strong>ManyThings: list of objects.</li>
<li><strong>is</strong>AState or <strong>has</strong>SomeThing: for boolean state.</li>
</ul>
<p>Any variable which does not begin by 'a', 'some' or 'is/has' is a member variable.</p>
http://stackoverflow.com/questions/111605/what-kind-of-prefix-do-you-use-for-member-variables/111749#1117490Answer by Tim for What kind of prefix do you use for member variables?Tim 2008-09-21T19:02:11Z2008-09-21T19:02:11Z<p>Since VB.NET is not case-sensitive, I prefix my member variables with an underscore and camel case the rest of the name. I capitalize property names.</p>
<pre><code>Dim _valueName As Integer
Public Property ValueName() As Integer
</code></pre>
http://stackoverflow.com/questions/111605/what-kind-of-prefix-do-you-use-for-member-variables/111765#1117650Answer by Daniel Crenna for What kind of prefix do you use for member variables?Daniel Crenna2008-09-21T19:06:24Z2008-09-21T19:06:24Z<p>I use camel case and underscore like many here. I use the underscore because I work with C# and I've gotten used to avoiding the 'this' keyword in my constructors. I camel case method-scoped variants so the underscore reminds me what scope I'm working with at the time. Otherwise I don't think it matters as long as you're not trying to add unnecessary information that is already evident in code.</p>
http://stackoverflow.com/questions/111605/what-kind-of-prefix-do-you-use-for-member-variables/111794#1117942Answer by Tetha for What kind of prefix do you use for member variables?Tetha2008-09-21T19:21:46Z2008-09-21T19:21:46Z<p>Most of the time, I use python. Python requires you to use self.foo in order to access the attribute foo of the instance of the current class. That way, the problem of confusing local variables, parameters and attributes of the instance you work on is solved.<br />
Generally, I like this approach, even though I dislike being forced to do it. Thus, my ideal way to do thos is to not do it and use some form of attribute access on this or self in order to fetch the member variables. That way, I don't have to clutter the names with meta-data. </p>
http://stackoverflow.com/questions/111605/what-kind-of-prefix-do-you-use-for-member-variables/111804#1118046Answer by fastcall for What kind of prefix do you use for member variables?fastcall2008-09-21T19:24:17Z2008-09-21T19:24:17Z<p>It's more important to be consistent than anything, so pick something you and your teammates can agree upon and stick with it. And if the language you're coding in has a convention, you should try to stick to it. Nothing's more confusing than a code base that follows a prefixing rule inconsistently.</p>
<p>For c++, there's another reason to prefer m_ over _ besides the fact that _ sometimes prefixes compiler keywords. The m stands for member variable. This also gives you the ability disambiguate between locals and the other classes of variables, s_ for static and g_ for global (but of course don't use globals).</p>
<p>As for the comments that the IDE will always take care of you, is the IDE really the only way that you're looking at your code? Does your diff tool have the same level of quality for syntax hilighting as your IDE? What about your source control revision history tool? Do you never even cat a source file to the command line? Modern IDE's are fantastic efficiency tools, but code should be easy to read regardless of the context you're reading it in.</p>
http://stackoverflow.com/questions/111605/what-kind-of-prefix-do-you-use-for-member-variables/111806#1118060Answer by Kasprzol for What kind of prefix do you use for member variables?Kasprzol2008-09-21T19:25:05Z2008-09-21T19:25:05Z<p>For my own projects I use _ as a postfix (as Martin York noted above, _ as a prefix is reserver by the C/C++ standard for compiler implementations) and i when working on <a href="http://www.symbian.com/developer/techlib/v70sdocs/doc_source/DevGuides/EssentialIdioms/NamingConvs.guide.html" rel="nofollow">Symbian projects</a>.</p>
http://stackoverflow.com/questions/111605/what-kind-of-prefix-do-you-use-for-member-variables/111860#1118602Answer by theprise for What kind of prefix do you use for member variables?theprise2008-09-21T19:41:44Z2008-09-21T19:41:44Z<p>I prefix member variables with 'm' and parameters (in the function) with 'p'. So code will look like:</p>
<pre><code>class SomeClass
{
private int mCount;
...
private void SomeFunction(string pVarName){...}
}
</code></pre>
<p>I find that this quickly tells you the basic scope of any variable - if no prefix, then it's a local. Also, when reading a function you don't need to think about what's being passed in and what's just a local variable.</p>
http://stackoverflow.com/questions/111605/what-kind-of-prefix-do-you-use-for-member-variables/111930#1119301Answer by Eric for What kind of prefix do you use for member variables?Eric2008-09-21T20:05:45Z2008-09-21T20:05:45Z<p>We use m_ and then a slightly modified Simonyi notation, just like Rob says in a previous response. So, prefixing seems useful and m_ is not too intrusive and easily searched upon.</p>
<p>Why notation at all? And why not just follow (for .NET) the Microsoft notation recommendations which rely upon casing of names?</p>
<p>Latter question first: as pointed out, VB.NET is indifferent to casing. So are databases and (especially) DBAs. When I have to keep straight customerID and CustomerID (in, say, C#), it makes my brain hurt. So casing is a form of notation, but not a very effective one.</p>
<p>Prefix notation has value in several ways:</p>
<ol>
<li>Increases the human comprehension of code without using the IDE. As in code review -- which I still find easiest to do on paper initially.</li>
<li>Ever write T-SQL or other RDBMS stored procs? Using prefix notation on database column names is REALLY helpful, especially for those of us who like using text editors for this sort of stuff.</li>
</ol>
<p>Maybe in short, prefixing as a form of notation is useful because there are still development environments where smart IDEs are not available. Think about the IDE (a software tool) as allowing us some shortcuts (like intellisense typing), but not comprising the whole development environment. </p>
<p>An IDE is an Integrated Development Environment in the same way that a car is a Transportation Network: just one part of a larger system. I don't want to follow a "car" convention like staying on marked roads, when sometimes, its faster just to walk through a vacant lot. Relying on the IDE to track variable typing would be like needing the car's GPS to walk through the vacant lot. Better to have the knowledge (awkward though it may be to have "m_intCustomerID") in a portable form than to run back to the car for every small change of course.</p>
<p>That said, the m_ convention or the "this" convention are both readable. We like m_ because it is easily searched and still allows the variable typing to follow it. Agreed that a plain underscore is used by too many other framework code activities.</p>
http://stackoverflow.com/questions/111605/what-kind-of-prefix-do-you-use-for-member-variables/111940#1119400Answer by Matt J for What kind of prefix do you use for member variables?Matt J2008-09-21T20:09:42Z2008-09-21T20:09:42Z<p>In Java, one common convention is to preface member variables with "my" andUseCamelCaseForTheRestOfTheVariableName.</p>
http://stackoverflow.com/questions/111605/what-kind-of-prefix-do-you-use-for-member-variables/111971#1119711Answer by paul.richardson for What kind of prefix do you use for member variables?paul.richardson2008-09-21T20:18:31Z2008-09-21T20:18:31Z<p>I've used to use m_ perfix in C++ but in C# I prefer just using camel case for the field and pascal case for its property.</p>
<pre><code>private int fooBar;
public int FooBar
{
get { return fooBar; }
set { fooBar = value; }
}
</code></pre>
http://stackoverflow.com/questions/111605/what-kind-of-prefix-do-you-use-for-member-variables/111975#1119751Answer by David Moore for What kind of prefix do you use for member variables?David Moore2008-09-21T20:19:46Z2008-09-21T20:19:46Z<p>I'm with the people that don't use prefixes.</p>
<p>IDEs are so good nowadays, it's easy to find the information about a variable at a glance from syntax colouring, mouse-over tooltips and easy navigation to its definition.</p>
<p>This is on top of what you can get from the context of the variable and naming conventions (such as lowerCamelCase for local variables and private fields, UpperCamelCase for properties and methods etc) and things like "hasXXXX" and "isXX" for booleans.</p>
<p>I haven't used prefixes for years, but I did used to be a "this." prefix monster but I've gone off that unless absolutely necessary (thanks, Resharper).</p>
http://stackoverflow.com/questions/111605/what-kind-of-prefix-do-you-use-for-member-variables/111981#1119810Answer by gabr for What kind of prefix do you use for member variables?gabr2008-09-21T20:22:36Z2008-09-21T20:22:36Z<p>I'm weirdo and I prefix member variables with initials from the class name (which is camel-cased).</p>
<pre><code>TGpHttpRequest = class(TOmniWorker)
strict private
hrHttpClient : THttpCli;
hrPageContents: string;
hrPassword : string;
hrPostData : string;
</code></pre>
<p>Most of the Delphi people just use F.</p>
<pre><code>TGpHttpRequest = class(TOmniWorker)
strict private
FHttpClient : THttpCli;
FPageContents: string;
FPassword : string;
FPostData : string;
</code></pre>
http://stackoverflow.com/questions/111605/what-kind-of-prefix-do-you-use-for-member-variables/111997#1119970Answer by Mark Stock for What kind of prefix do you use for member variables?Mark Stock2008-09-21T20:27:09Z2008-09-21T20:27:09Z<p>No prefix. And, for purely functional / stack based no variable name. But if I really have to use side effects which I may if I want to output anything then I use <code>p-></code> where p is an external Pointer to Parameters Passed to my function.</p>
<p>I think using a prefix / prefixes gets silly.</p>
<pre><code>__EXTERN_GLOBAL_hungariannotationvariabletypeVendorName-my_member_prefix-Category-VariableName
</code></pre>
<p>Mulling over the mul example, my member variable which is an unsigned long representing the opcode for a multiply instruction might be mulmul.</p>
http://stackoverflow.com/questions/111605/what-kind-of-prefix-do-you-use-for-member-variables/112137#1121371Answer by Robert Paulson for What kind of prefix do you use for member variables?Robert Paulson2008-09-21T20:58:02Z2008-09-21T21:22:18Z<p>A single <strong>_</strong> used only as a visual indicator. (C#)</p>
<ul>
<li>helps to group members with intellisense.</li>
<li>easier to spot the member variables when reading the code.</li>
<li>harder to hide a member variable with a local definition.</li>
</ul>
http://stackoverflow.com/questions/111605/what-kind-of-prefix-do-you-use-for-member-variables/114216#1142160Answer by Dynite for What kind of prefix do you use for member variables?Dynite2008-09-22T10:50:46Z2008-09-22T10:50:46Z<p>Symbian uses 'i' as a prefix for members and 'a' for parameters.</p>
http://stackoverflow.com/questions/111605/what-kind-of-prefix-do-you-use-for-member-variables/114279#1142790Answer by mitchnull for What kind of prefix do you use for member variables?mitchnull2008-09-22T11:09:19Z2008-09-22T11:09:19Z<p>I only use a _ <strong>suffix</strong> (the prefix _ is reserved in c/c++ as many have noted above). I like it mainly because I hate parameter names like 'aCircle', and I don't like writing out this.circle either unless absolutely necessary. (I only do that for public access member variables, 'cos for these I don't use the underscore suffix).</p>
http://stackoverflow.com/questions/111605/what-kind-of-prefix-do-you-use-for-member-variables/117739#1177391Answer by moffdub for What kind of prefix do you use for member variables?moffdub2008-09-22T21:25:04Z2008-09-22T21:25:04Z<p>If the language supports the <strong>this</strong> or <strong>Me</strong> keyword, then use no prefix and instead use said keyword.</p>
http://stackoverflow.com/questions/111605/what-kind-of-prefix-do-you-use-for-member-variables/953763#9537630Answer by eschneider for What kind of prefix do you use for member variables?eschneider2009-06-05T00:27:44Z2009-06-05T00:27:44Z<p>I like m_ but as long as convention is used in the code base is used I'm cool with it.</p>