up vote 14 down vote favorite
3
share [g+] share [fb]

What do you use to denote a member variable in a class?

The most common time this is a problem is when you have a parameter passed into a constructor to set a member variable. Here is an example:

public MyClass(string name)
{
    name = name;  // arghh!!
}

I've used m_name before, but that stinks of Hungarian. I've used _name before, (I think I like that one best right now.) I've done the whole public MyClass(string n), to make the variable different, but that really stinks IMO. I've done the this.name before, but that seems burdensome to put everywhere you mention a member variable, and its hard to enforce.

Anyone have a good reason why one is better than another? Or what do you use?

This can be language agnostic.

Related:
http://stackoverflow.com/questions/151594/whats-a-good-naming-convention-for-large-scope-function-variables

link|improve this question
feedback

24 Answers

up vote 88 down vote accepted

Why change a perfectly fine naming scheme, just because of one little bump in the road?

public MyClass(string name)
{
    this.name = name;
}
link|improve this answer
11  
this is where this shines :) – annakata Dec 19 '08 at 14:49
2  
Exactly. Don't waste time thinking of a new variable name, when you've already got a perfectly descriptive one. – Bill the Lizard Dec 19 '08 at 15:02
1  
Wow that's good.. :) – krebstar Dec 19 '08 at 15:08
1  
And this way is approved by MS StyleCop :) – PiRX Dec 22 '08 at 7:00
1  
@Rui: Just use THIS all the time for global and you won't have any error... – Daok Dec 22 '08 at 21:08
show 5 more comments
feedback

"m_" hardly stinks of Hungarian, it has no type information in it at all. It does provide a handy means of reminding you that it is a member variable though, which can mean the difference between your code working and a few days of debugging.

So, I use m_ and don't worry myself about whether it 'stinks' or not, it works well and isn't intrusive.

link|improve this answer
5  
the 'this' operator does the exact same thing, arguably better. – Greg Dean Dec 19 '08 at 14:41
m_ takes less time to write... and uses less space. – Tim Dec 19 '08 at 14:47
2  
I would argue agains that, Greg. m_, p_, g_ and s_ are great little tells and m_ tends to be the MFC standard. Oh member, parameter, global, static. It's easier to have one convention for them all, then to switch it up for member and globals and such. – baash05 Dec 19 '08 at 14:50
2  
OH.. strickly speaking m_ is hungarian notation. There are two types of hungarian and it falls under one of them.. Not all hungarian is bad. This is a case on point. – baash05 Dec 19 '08 at 15:08
4  
m_ etc might seem handy, but we have tools that can tells us what type of variable a variable is. Make the code look nicer and be easier to read, m_ is just ugly and the human eye isn't trained to read it. – Neil Barnwell Dec 22 '08 at 17:27
show 2 more comments
feedback

When doing .NET projects have used the _ prefix. So the code looked something like:

public MyClass(String name)
{
    this._name = name;
}

alt. code would be:

public MyClass(String name)
{
    _name = name;
}

and finally some of my code looks like:

public MyClass(String psName)
{
    this._name = psName;
}

I know that "_" could have questionable meaning but with repeat usage it is actually quite obvious...

link|improve this answer
3  
This prefix is not needed in C# because of the this keyword. – Daok Dec 22 '08 at 18:52
1  
right, it isn't but I still use it to distinguish member fields for when I don't use the this keyword. – Frank V Jan 20 '09 at 21:30
2  
the _ has questionable meaning in that its traditionally used to denote a 'hidden' variable: don't go against convention as you just confused everyone. In C/C++ it denotes a reserved word often used in a library implementation. – gbjbaanb Feb 21 '09 at 15:54
I've never actually heard about this... I guess it depends on the team you are working with. Every team I've worked with doesn't mind this notation. I mostly use C#, so in general this might not be a good practice... – Frank V Mar 3 '09 at 1:35
@gbjbaanb that's exactly right, the intention of starting a variable name with _ is to denote that it is hidden. That is why the private instance fields should be named using that convention. They are internal to the implementation of the class and should not be accessed by other types. With proper OO design, these private instance fields must be encapsulated by a property or getter and setter or other accessor methods. – Tion Jul 19 '10 at 15:59
feedback

In a language like Java, I'd just do:

public MyClass(String name)
{
    this.name = name;
}

In cases in which the member variable is not shadowed, I'd just do name.

I never prefix with m or m_. It always seemed kind of nonsensical to me.

link|improve this answer
feedback

name_ seems to be another common "standard".

link|improve this answer
3  
And a pretty terrible one, in my opinion. What does the "_" mean? – Joachim Sauer Dec 19 '08 at 14:35
10  
I just threw up a little – Greg Dean Dec 19 '08 at 14:39
1  
It's a C++ standard, and the reason it's a trailing underscore is because anything with a leading underscore is reserved and should not be used. I'm also the only person at my company that doesn't think this is really ugly ;) – MadKeithV Dec 19 '08 at 14:43
1  
It is ugly. It still is (reputed to be) a standard. It is better than the leading underscore version - but it is still ugly. – Jonathan Leffler Dec 22 '08 at 7:16
1  
This is how I name member variables in C++. I find it quite logical and not unattractive. @MadKeithV correctly points out the reason to shy away from leading underscores, and 'm_' always seemed uglier to me. Same names make initializer lists look funky to me (see @Danko's answer), while WhatevClass(int foo, int baz) : foo_(foo), baz_(baz) {} is readable and obvious. IMHO, of course. – Derrick Turk Mar 10 '10 at 17:06
feedback

Well, name conventions were more significant in days when IDEs were not as powerful as today. Infact, it was plain notepad which we worked on. I would have completely agreed with people to follow conventions like m_ , s_, etc prefixes for different types of variables.

But, Nowadays, we work on much improved IDEs where it is much easier to traverse across the files and see the scope of variables and methods. Features like autocomplete, refactor, generate codes and zillions of those are at our disposal these days.

It makes little sense to follow such prefixes, especially when it interferes with the readability of the code.

Thoughts!!!

link|improve this answer
feedback

In C# I use properties starting with uppercase characters. If these are backed by fields with lowercase names (i.e., not automatic properties), and I need to use the backing field for some reason I always precede with this. Usually I precede my properties with this as well.

public string Property { get; private set; }

public MyClass( string property )
{
    this.Property = property;
}
link|improve this answer
I don't think having two things that differ solely by case is a good idea. Adding the "this." helps...but not enough. – Michael Haren Dec 22 '08 at 17:32
I try to avoid this, as well. FxCop, and Code Analysis in VS 2008, have a rule about this. CA1708 - IdentifiersShouldDifferByMoreThanCase. (msdn.microsoft.com/en-us/library/ms182242.aspx). – joseph.ferris Dec 22 '08 at 19:01
1  
I would agree in the cases where the variable has the same scope, but I think it's perfectly ok when the lowercase version is the backing field for a property or one is a parameter to a function. Avoiding the right name for a variable or resorting to prepending various prefixes is, IMO, worse than using the right name even with it is the lowercase version of an existing property. I wouldn't, for example, have two properties that differ only in case, but I think the example I gave is perfectly acceptable and not ambiguous (obviously). – tvanfosson Feb 6 '10 at 13:38
feedback

Personally, I find using m_ for instance variables clutters the code a bit.

I'd go with tvanfosson's approach, using .NET 3.5's automatic properties. There's less code to write, and there should be no confusion between constructor arguments and instance variables (unless you decide to capitalize your arguments too...)

link|improve this answer
feedback

Although apparently Microsoft recommend against m_ and _, I was under the belief that, as .NET is an open standard that can be implemented by any language, those languages could include languages that are not case sensitive, so in order to allow local variables and attributes to have the same name without declaring the name twice, we should include underscores to differentiate member variables and Properties.

for example:

private int number

public int Number { get; set; }

would not be applicable in, say, Delphi.Net. That being said, if the above code was referenced by a Delphi.NET project by assembly, the private variable name should not be an issue. Nonetheless, I would definitely use

private int _number

public int Number { get; set; }
link|improve this answer
exactly, this is optimal in all ways and conveys the right information with the fewest number of keystrokes. – Tion Jul 19 '10 at 16:06
feedback

I use:

  • m_name for member variables
  • s_name for static member variables
  • NAME for constants.

Clean Code, which by the way is an excellent book, doesn't recommend using m_ but I think this is one of the few places where Uncle Bob is wrong. Even though syntax highlighting can help you distinguish between member and local variables I have seen at least three bugs this year because of mix ups, all by different people using Eclipse.

Also, m_ looks a bit ugly and I believe this is good. This can prevent developers from accessing the member variable directly without using a getter/setter, e.g. myObject.m_name, and if it looks ugly people hesitate before creating one more member variable when a local one would just do fine.

I would be okay with this.name if you could force the compiler/IDE to only accept that notation when you refer to member variables.

link|improve this answer
feedback

I prefer the _name notation for private instance fields. I've found that hitting _ followed by Ctrl+Enter to get IntelliSense to list my privates is extremely handy!

Another thing I like to do is name by private methods as camelCased. This provides a very easy and very quick way to distinguish between private and public/protected methods, not just when looking through the code-file itself, but also looking through call-stacks. Of course, I don't use this for private properties, as, IMO, they should not exist!

link|improve this answer
feedback

In C++, I don't prefix/suffix member variables if I'm exposing them as public. Also, if you're using member initialization lists, you can actually use the same name for a constructor parameter, so this code works:

struct FooBar
{
    int foo;
    int bar;

    FooBar( int foo, int bar ) : 
    	foo( foo ), 
    	bar( bar )
    {
    }
};

There is a good article about class instance initialization which describes this "trick". See also 12.6.2.7 in the C++ standard.

link|improve this answer
feedback
public MyClass(String name)
{
    this.name = name;
}
link|improve this answer
feedback

m_ hardly "stinks of hungarian". It works, it's widely used and I see no real good arguments against it.

EDIT

This has possibility of turning into an (ugly) religious war.

Just pick a convention and stick with it.

link|improve this answer
feedback

I'm the opposite of @Micah, I use the prefixes "_" for member, "g_" for global and "s_" for static. To each his own, just follow a standard.

link|improve this answer
1  
global? Where do you have globals? Are globals = to member variables? – Frank V Nov 18 '09 at 19:35
feedback

I tend to go with m_ mostly because it's the windows standard, and reading windows code becomes easier if you have the same style. I've seen the _ for members in older c++ but I kinda like the flexiblity of the m. I put:

m_ in front of members (instance) variables.
s_ in front of statics
g_ in front of globals (that arn't constants)
p_ in front of parameter variables (aka arguments).

I've seen others use a_ instead of p_

public MyClass(string p_name)
{
    m_name = p_name;
}

I don't like the "this." partially because it's not as language agnostic as the m_ and partly because I use the prefix for globals, parameters and statics.
Also the "this" would make your code harder to read.. "this" in my IDE shows up as blue while the text around it is black. That makes it stand out, when I'd rather have the variables more homogenious and only have controle statments different.

link|improve this answer
1  
Change your IDE's color settings. – jmucchiello Dec 22 '08 at 3:30
feedback

I always do (in Java):

public class Foo{
  int _foo;

  public void bar( int foo_ ){
    _foo = foo_;
  }
}

So _ before member variables and _ after arguments. Pretty common, I believe.

link|improve this answer
feedback

I chose the simplest and easiest solution:

String _name;

public Test(String name)
{
    _name = name;
}

Using this.name, or m_name all work fine, but why overcomplicate your code, even by a little bit?

The only exception is when I'm using automatic properties:

public String Name { get; set; }

public Test(String name)
{
    Name = name
}
link|improve this answer
feedback

In C# I've grown fond of:

_variable = private/protected class member

Variable = public accessor

variable = function parameter

link|improve this answer
feedback

I prefer iName - a Symbian C++ naming convention (more here). Symbian has a set of conventions designed to help developers communicate ownership and cleanup intent (to avoid potential memory leaks) and although it's a bit clunky to start with, it makes a lot of sense. Though maybe it's just habitual now...

link|improve this answer
feedback

the gcc flag -Wshadow gives me a warning when i use the following

class a
{
int x ;

public:

void fun(int x) { this->x = x } ;
} ;
link|improve this answer
feedback

Well if the code is actually that simple, I do this:

public MyClass(string newName)
{
    this.name = newName; //You can omit "this.", but having it there makes the code more clear.
}

But really, it doesn't matter how you do it, so long as it's consistent.

link|improve this answer
feedback

I use quite a long-winded convention. I always prefix member variables with this and they are also always prefixed with m_. Then I use Hungarian Notation to type hint.

this.m_sValue

Similarly, arguments passed into a function are always prefixed with a_, e.g.

a_sArgumentOne, a_iArgumentTwo
link|improve this answer
whoever marked me down could at least have left a comment?! – michael Aug 11 '10 at 16:07
feedback

If it's an instance variable i prefix with "m_". If it's a static variable I prefix with "_".

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.