vote up 11 vote down star
16

It's common in C++ to name member variables with some kind of prefix to denote the fact that they're member variables, rather than local variables or parameters. If you've come from an MFC background, you'll probably use "m_foo". I've also seen "myFoo" occasionally.

C# (or possibly just .NET) seems to recommend using just an underscore, as in "_foo". Is this allowed by the C++ standard?

flag

69% accept rate

9 Answers

vote up 42 vote down check
  • An identifier beginning with a double underscore
    • is reserved for use by the compiler
  • An identifier beginning with a single underscore and a capital letter
    • is reserved for use by the OS and libraries.
  • An identifier containing double underscore is reserved:
    • Not sure who it is reserved for
  • Identifiers reserved in the global (or std) namespace:
    • An underscore followed by any letter
    • This at least means they are not macros but there are reserved
      function names etc that are used by the implementation

Personally I just don't start identifiers with underscores.
New Addition to my rule: Don't use double underscore anywhere. Which is easy as I rarely use underscore.

After doing research on this article I no longer end my identifiers with '_t' as this is reserved by the POSIX standard (which primarily affects C, but the restrictions are thus inherited by C++); see below for details.

From the Draft (C++) Standard:

17.6.4.3.3 Global names [global.names]

1 Certain sets of names and function signatures are always reserved to the implementation:

— Each name that contains a double underscore __ or begins with an underscore followed by an uppercase letter (2.11) is reserved to the implementation for any use.
— Each name that begins with an underscore is reserved to the implementation for use as a name in the global namespace.176

Footnote: 176) Such names are also reserved in namespace ::std (17.6.4.3).

From the C standard.

Because C++ imports the C standard these also apply (looking for chapter and verse):

Some additional classes of identifier names are reserved for future extensions to the C language or the POSIX.1 environment. While using these names for your own purposes right now might not cause a problem, they do raise the possibility of conflict with future versions of the C or POSIX standards, so you should avoid these names.

  • Names beginning with a capital 'E' followed a digit or uppercase letter:
    • may be used for additional error code names. See Error Reporting.
  • Names that begin with either 'is' or 'to' followed by a lowercase letter
    • may be used for additional character testing and conversion functions.
  • Names that begin with 'LC_' followed by an uppercase letter
    • may be used for additional macros specifying locale attributes.
  • Names of all existing mathematics functions suffixed with f' or l' are reserved
    • for corresponding functions that operate on float and long double arguments, respectively.
  • Names that begin with 'SIG' followed by an uppercase letter are reserved
    • for additional signal names.
  • Names that begin with 'SIG_' followed by an uppercase letter are reserved
    • for additional signal actions.
  • Names beginning with 'str', 'mem', or 'wcs' followed by a lowercase letter are reserved
    • for additional string and array functions.
  • Names that end with '_t' are reserved
    • for additional type names.

The last one here surprised me a lot. I think that is a POSIX standard (not sure yet) looking for clarification and official chapter and verse. This is from the GNU libtool manual, listing reserved names.

CesarB provided the following link to the POSIX 2004 reserved symbols and notes 'that many other reserved prefixes and suffixes ... can be found there'. The POSIX 2008 reserved symbols are defined here. The restrictions are somewhat more nuanced than those above.


Section 7.1.3 of the C standard (ISO 9899:1999) says:

7.1.3 Reserved identifiers

Each header declares or defines all identifiers listed in its associated subclause, and optionally declares or defines identifiers listed in its associated future library directions subclause and identifiers which are always reserved either for any use or for use as file scope identifiers.

— All identifiers that begin with an underscore and either an uppercase letter or another underscore are always reserved for any use.

— All identifiers that begin with an underscore are always reserved for use as identifiers with file scope in both the ordinary and tag name spaces.

— Each macro name in any of the following subclauses (including the future library directions) is reserved for use as specified if any of its associated headers is included; unless explicitly stated otherwise (see 7.1.4).

— All identifiers with external linkage in any of the following subclauses (including the future library directions) are always reserved for use as identifiers with external linkage.154)

— Each identifier with file scope listed in any of the following subclauses (including the future library directions) is reserved for use as a macro name and as an identifier with file scope in the same name space if any of its associated headers is included.

No other identifiers are reserved. If the program declares or defines an identifier in a context in which it is reserved (other than as allowed by 7.1.4), or defines a reserved identifier as a macro name, the behavior is undefined.

If the program removes (with #undef) any macro definition of an identifier in the first group listed above, the behavior is undefined.

Footnote 154) The list of reserved identifiers with external linkage includes errno, math_errhandling, setjmp, and va_end.

link|flag
+1 for the comment. – paercebal Oct 23 '08 at 7:22
Just a note - with the exception of numbering, what Martin quoted from the draft standard is exactly what's in the C++03 standard (17.4.3.1.2). – Michael Burr Oct 23 '08 at 8:09
Your summary doesn't say the same thing as the quote from the Standard – fizzer Oct 23 '08 at 11:22
global names are different from "any identifier" – Adam Mitz Oct 23 '08 at 13:07
1  
The C++ standard doesn't "import" the C one, does it? They import certain headers, but not the language as a whole, or naming rules, as far as I know. But yeah, the _t one surprised me as well. But since it's C, it can only apply to the global ns. Should be safe to use _t inside classes as I read it – jalf Apr 6 at 16:16
show 12 more comments
vote up 3 vote down

The following characters are legal as the first character of an identifier, or any subsequent character:

_ a b c d e f g h i j k l m
n o p q r s t u v w x y z
A B C D E F G H I J K L M
N O P Q R S T U V W X Y Z

The following characters are legal as any character in an identifier except the first:

0 1 2 3 4 5 6 7 8 9

Microsoft also warns,

Use of two sequential underscore characters ( __ ) at the beginning of an identifier, or a single leading underscore followed by a capital letter, is reserved for C++ implementations in all scopes. You should avoid using one leading underscore followed by a lowercase letter for names with file scope because of possible conflicts with current or future reserved identifiers.

link|flag
That should read: "The following ADDITIONAL characters..." – Andrew Oct 23 '08 at 7:05
You missed the important bit. – Roger Lipscombe Oct 23 '08 at 7:05
Added the important bit :) – Jacob Oct 23 '08 at 7:07
vote up 0 vote down

Yes, underscores may be used anywhere in an identifier. I believe the rules are: any of a-z, A-Z, _ in the first character and those + 0-9 for following characters.

Underscore prefixes are common in C code -- a single underscore means "private", and double underscores are usually reserved for use by the compiler.

link|flag
They are common in libraries. They should not be common in user code. – Martin York Oct 23 '08 at 7:12
I agree with Martin on this case. – paercebal Oct 23 '08 at 7:42
People do write libraries in C, you know. – John Millikin Oct 23 '08 at 17:51
vote up 2 vote down

From MSDN:

Use of two sequential underscore characters ( __ ) at the beginning of an identifier, or a single leading underscore followed by a capital letter, is reserved for C++ implementations in all scopes. You should avoid using one leading underscore followed by a lowercase letter for names with file scope because of possible conflicts with current or future reserved identifiers.

This means that you can use a single underscore as a member variable prefix, as long as it's followed by a lower-case letter.

This is apparently taken from section 17.4.3.1.2 of the C++ standard, but I can't find an original source for the full standard online.

See also this question.

link|flag
vote up 8 vote down

The rules to avoid collision of names are both in the C++ standard (see Stroustrup book) and mentioned by C++ gurus (Sutter, etc.).

Personal rule

Because I did not want to deal with cases, and wanted a simple rule, I have designed a personal one that is both simple and correct:

When naming a symbol, you will avoid collision with compiler/OS/standard libraries if you:

  • never start a symbol with an underscore
  • never name a symbol with two consecutive underscores inside.

Of course, putting your code in an unique namespace helps to avoid collision, too (but won't protect against evil macros)

Some examples

(I use macros because they are the more code-polluting of C/C++ symbols, but it could be anything from variable name to class name)

#define _WRONG
#define __WRONG_AGAIN
#define RIGHT_
#define WRONG__WRONG
#define RIGHT_RIGHT
#define RIGHT_x_RIGHT
link|flag
vote up 1 vote down

The glibc manual page about that can be found at http://www.gnu.org/software/libc/manual/html_node/Reserved-Names.html

Edit: see also http://www.opengroup.org/onlinepubs/009695399/functions/xsh_chap02_02.html

link|flag
vote up 0 vote down

The reserving of the suffix '_t' is a real surprise.

link|flag
vote up 1 vote down

As for the other part of the question, it's common to put the underscore at the end of the variable name to not clash with anything internal.

I do this even inside classes and namespaces because name mangling is implementation-defined and it is possible that class_name::_variable_name would be mangled into something starting with a '_' (because _variable_name starts with a '_'). class_name::variable_name_ however won't ever get mangled that way.

link|flag
vote up 0 vote down

int S; int S; // RESERVED FOR COMPILER USAGE int S; int _S; // OS & LIBRARIES int S; // RESERVED FOR COMPILER USAGE int S; int _S; // OS & LIBRARIES int 1___;//error: expected identifier int 1___;//error: expected identifier int S; //int ___; // Reserved

link|flag

Your Answer

Get an OpenID
or

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