It's usually to see a _var variable name in a class field. What does the underscore mean? Is there a reference for all these special naming convention? Thanks.
|
|
|||||||||||||||||||||
|
|
The underscore is simply a convention; nothing more. As such, its use is always somewhat different to each person. Here's how I understand them for the two languages in question: In C++, an underscore usually indicates a private member variable. In C#, I usually see it used only when defining the underlying private member variable for a public property. Other private member variables would not have an underscore. This usage has largely gone to the wayside with the advent of automatic properties though. Before:
After:
|
|||||||||||||||||||
|
|
Actually the This came to overcome the case insensitivity of VB when declaring Proprieties for example such code isn't possible in VB because it consider
So to overcome this, some used a convention to add '_' to the private field to come like this
Since many convention are for .Net and to keep some uniformity between C# et VB.NET convention, they are using the same one. I found the reference for what I was saying : http://10rem.net/articles/net-naming-conventions-and-programming-standards---best-practices
|
||||
|
|
|
The first commenter (R Samuel Klatchko) referenced: What are the rules about using an underscore in a C++ identifier? which answers the question about the underscore in C++. In general, you are not supposed to use a leading underscore, as it is reserved for the implementer of your compiler. The code you are seeing with As other answers state, it used to be used in C++ to identify class member variables. However, it has no special meaning as far as decorators or syntax goes. So if you want to use it, it will compile. I'll leave the C# discussion to others. |
|||
|
|
|
The Microsoft naming standard for C# says variables and parameters should use the lower camel case form IE: |
|||||||||
|
|
_var has no meaning and only serves the purpose of making it easier to distinguish that the variable is a private member variable. In C++, using the _var convention is bad form, because there are rules governing the use of the underscore in front of an identifier. _var is reserved as a global identifier, while _Var (underscore + capital letter) is reserved anytime. This is why in C++, you'll see people using the var_ convention instead. |
|||
|
|
|
You can create your own coding guidelines. Just write a clear documentation for the rest of the team. Using _field helps the Intelilsense to filter all class variables just typing _. I usually follow the Brad Adams Guidelines, but it recommends to not use underscore. |
||||
|
|
|
No, it depends on your team. for example:
|
||||
|
|
|
As far as the C and C++ languages are concerned there is no special meaning to an underscore in the name (beginning, middle or end). It's just a valid variable name character. The "conventions" come from coding practices within a coding community. As already indicated by various examples above, _ in the beginning may mean private or protected members of a class in C++. Let me just give some history that may be fun trivia. In UNIX if you have a core C library function and a kernel back-end where you want to expose the kernel function to user space as well the _ is stuck in front of the function stub that calls the kernel function directly without doing anything else. The most famous and familiar example of this is exit() vs _exit() under BSD and SysV type kernels: There, exit() does user-space stuff before calling the kernel's exit service, whereas _exit just maps to the kernel's exit service. So _ was used for "local" stuff in this case local being machine-local. Typically _functions() were not portable. In that you should not expect same behaviour across various platforms. Now as for _ in variable names, such as int _foo; Well psychologically, an _ is an odd thing to have to type in the beginning. So if you want to create a variable name that would have a lesser chance of a clash with something else, ESPECIALLY when dealing with pre-processor substitutions you want consider uses of _. My basic advice would be to always follow the convention of your coding community, so that you can collaborate more effectively. |
|||
|
|
|
There's no particular single naming convention, but I've seen that for private members. |
|||
|
|
|
From my experience (certainly limited), and underscore will indicate that it is a private member variable. As Gollum said, this will depend on the team, though. |
|||
|
|
|
I use the _var naming for member variables of my classes. There are 2 main reasons I do: 1) It helps me keep track of class variables and local function variables when I'm reading my code later. 2) It helps in Intellisense (or other code-completion system) when I'm looking for a class variable. Just knowing the first character is helpful in filtering through the list of available variables and methods. |
|||
|
|
|
Many people like to have private fields prefixed with an underscore. It is just a naming convention. C#'s 'official' naming conventions prescribe simple lowercase names (no underscore) for private fields. I'm not aware of standard conventions for C++, although underscores are very widely used. |
|||
|
|
|
It's just a convention some programmers use to make it clear when you're manipulating a member of the class or some other kind of variable (parameters, local to the function, etc). Another convention that's also in wide use for member variables is prefixing the name with 'm_'. Anyway, these are only conventions and you will not find a single source for all of them. They're a matter of style and each programming team, project or company has their own (or even don't have any). |
|||
|
|
|
With C#, Microsoft Framework Design Guidelines suggest not using the underscore character for public members. For private members, underscores are OK to use. In fact, Jeffrey Richter (often cited in the guidelines) uses an m_ for instance and a "s_" for private static memberss. Personally, I use just _ to mark my private members. "m_" and "s_" verge on Hungarian notation which is not only frowned upon in .NET, but can be quite verbose and I find classes with many members difficult to do a quick eye scan alphabetically (imagine 10 variables all starting with m_). |
||||
|
|
There is a fully legit reason to use it in C#: if the code must be extensible from VB.NET as well. (Otherwise, I would not.) Since VB.NET is is case insensitive, there is no simple way to access the protected
E.g. this will access the property getter, not the field:
Heck, I cannot even write In order to make it easily accessible to derived classes in VB.NET, one has to come up with another naming convention. Prefixing an underscore is probably the least intrusive and most "historically accepted" of them. |
||||
|
|
|
Now the notation using "this" as in this.foobarbaz is acceptable for C# class member variables. It replaces the old "m_" or just "__" notation. It does make the code more readable because there is no doubt what is being reference. |
|||
|
|
|
I do this; it's pretty much in line with MSDN.
Here's a little more detail: http://jerrytech.blogspot.com/2009/09/simple-c-naming-convention.html |
|||
|
|
|
A naming convention like this is useful when you are reading code, particularly code that is not your own. A strong naming convention helps indicate where a particular member is defined, what kind of member it is, etc. Most development teams adopt a simple naming convention, and simply prefix member fields with an underscore ( Instance Field: m_fieldName This helps people understand the structure, use, accessibility and location of members when reading unfamiliar code very rapidly. |
|||||||
|