question about code style specifically variable declaration using _ prefix

G

gara.matt

Hi,

I was wondering, I've been reading some C++ code written by others,
usually libraries and stuff, and I've come across what strikes me as a
distinctive style that pervades most of the code I've been reading.
What I'm talking about is that some variables are declared with a "_"
prefix while others lack it. For example you may find a variable and
even functions like

int _temp

and one like

int temp
From a Java perspective, this style is quite new to me, seeing as the
Java compiler does not accept variables of the aforementioned type. I
have, however, seen this used also in C, but not to the same degree,
and I have ignored it. But it has come to a point where I see it so
much that I think it carries some kind of significance such that if I
understood then I could grasp code quicker.

Explain away, or BS away, I'm willing to listen.

Thanks,

Matt
 
I

Ian Collins

Hi,

I was wondering, I've been reading some C++ code written by others,
usually libraries and stuff, and I've come across what strikes me as a
distinctive style that pervades most of the code I've been reading.
What I'm talking about is that some variables are declared with a "_"
prefix while others lack it. For example you may find a variable and
even functions like

int _temp

and one like

int temp
Names with either a leading underscore followed by a capital letter or
two leading underscores are reserved for the implementation. That's why
you are seeing them in libraries.

It's common practice to avoid all names with a single leading underscore
in application code.
 
?

=?ISO-8859-1?Q?Erik_Wikstr=F6m?=

Hi,

I was wondering, I've been reading some C++ code written by others,
usually libraries and stuff, and I've come across what strikes me as a
distinctive style that pervades most of the code I've been reading.
What I'm talking about is that some variables are declared with a "_"
prefix while others lack it. For example you may find a variable and
even functions like

int _temp

and one like

int temp

Java compiler does not accept variables of the aforementioned type. I
have, however, seen this used also in C, but not to the same degree,
and I have ignored it. But it has come to a point where I see it so
much that I think it carries some kind of significance such that if I
understood then I could grasp code quicker.

Explain away, or BS away, I'm willing to listen.

If you have read code mostly from libraries, and especially system
libraries, this is understandable and could be considered good (or not)
but if they are not system libraries it's probably not a good idea. The
C++ standard specifies that all names beginning with __ (two
underscores) are reserved for the implementation, this means that if you
write an applications you should *never ever* use names that starts with
two underscores. Names starting with _ (a single underscore) however are
reserved for the implementation only in certain circumstances (such as
in the global namespace, or followed by an upper case letter).

So the question is whether your code can be considered part of the
implementation, in most cases this is not so but system libraries can
sometimes be considered as such. However since C++ supports namespaces
there's really never a need to use identifiers starting with underscore
and since it can sometimes lead to trouble the general advice seems to
be to avoid using them at all.
 
R

Robert Bauck Hamar

Erik said:
If you have read code mostly from libraries, and especially system
libraries, this is understandable and could be considered good (or not)
but if they are not system libraries it's probably not a good idea. The
C++ standard specifies that all names beginning with __ (two
underscores) are reserved for the implementation, this means that if you
write an applications you should *never ever* use names that starts with
two underscores.

Any name _containing_ two sequential underscores are reserved to the
implementation. It may be at the beginning, but also in the middle or at
the end. It doesn't really matter if it is in a nested namespace either.
Names starting with _ (a single underscore) however are
reserved for the implementation only in certain circumstances (such as
in the global namespace, or followed by an upper case letter).

If followed by an uppercase letter, the name is reserved everywhere. Names
beginning with an underscore followed by a lowercase letter are reserved in
the global namespace, just as any name from the C standard library is.
 
G

Guest

Any name _containing_ two sequential underscores are reserved to the
implementation. It may be at the beginning, but also in the middle or at
the end. It doesn't really matter if it is in a nested namespace either.

Oh, you're right. Lucky that I've never used it (not that I can thing of
any situation where putting two underscore in a name might seem like a
good idea).
 
J

John Harrison

Hi,

I was wondering, I've been reading some C++ code written by others,
usually libraries and stuff, and I've come across what strikes me as a
distinctive style that pervades most of the code I've been reading.
What I'm talking about is that some variables are declared with a "_"
prefix while others lack it. For example you may find a variable and
even functions like

int _temp

and one like

int temp

Java compiler does not accept variables of the aforementioned type. I
have, however, seen this used also in C, but not to the same degree,
and I have ignored it. But it has come to a point where I see it so
much that I think it carries some kind of significance such that if I
understood then I could grasp code quicker.

Explain away, or BS away, I'm willing to listen.

Thanks,

Matt

I use that style to indicate member variables. I think it's commonly
accepted that it's good to distinguish member variables from others
(even in Java) but I'm often criticised here for my particular way of
doing it. I don't care, it's correct and I like it.

John
 
B

Bo Persson

John Harrison wrote:
:: (e-mail address removed) wrote:
::: Hi,
:::
::: I was wondering, I've been reading some C++ code written by
::: others, usually libraries and stuff, and I've come across what
::: strikes me as a distinctive style that pervades most of the code
::: I've been reading. What I'm talking about is that some variables
::: are declared with a "_" prefix while others lack it. For example
::: you may find a variable and even functions like
:::
::: int _temp
:::
::: and one like
:::
::: int temp
:::
:::: From a Java perspective, this style is quite new to me, seeing
:::: as the
::: Java compiler does not accept variables of the aforementioned
::: type. I have, however, seen this used also in C, but not to the
::: same degree, and I have ignored it. But it has come to a point
::: where I see it so much that I think it carries some kind of
::: significance such that if I understood then I could grasp code
::: quicker.
:::
::: Explain away, or BS away, I'm willing to listen.
:::
::: Thanks,
:::
::: Matt
:::
::
:: I use that style to indicate member variables. I think it's
:: commonly accepted that it's good to distinguish member variables
:: from others (even in Java) but I'm often criticised here for my
:: particular way of doing it. I don't care, it's correct and I like
:: it.

I guess the criticism is that, although correct, a leading underscore
indicates that a name is now *either* a member variable, or a global
implementation-specific name, or possibly both.

I understand that some of your colleagues can be a bit confused by
this. :)


Bo Persson
 
?

=?ISO-8859-1?Q?Erik_Wikstr=F6m?=

John Harrison wrote:
:: (e-mail address removed) wrote:
::: Hi,
:::
::: I was wondering, I've been reading some C++ code written by
::: others, usually libraries and stuff, and I've come across what
::: strikes me as a distinctive style that pervades most of the code
::: I've been reading. What I'm talking about is that some variables
::: are declared with a "_" prefix while others lack it. For example
::: you may find a variable and even functions like
:::
::: int _temp
:::
::: and one like
:::
::: int temp
:::
:::: From a Java perspective, this style is quite new to me, seeing
:::: as the
::: Java compiler does not accept variables of the aforementioned
::: type. I have, however, seen this used also in C, but not to the
::: same degree, and I have ignored it. But it has come to a point
::: where I see it so much that I think it carries some kind of
::: significance such that if I understood then I could grasp code
::: quicker.
:::
::: Explain away, or BS away, I'm willing to listen.
:::
::: Thanks,
:::
::: Matt
:::
::
:: I use that style to indicate member variables. I think it's
:: commonly accepted that it's good to distinguish member variables
:: from others (even in Java) but I'm often criticised here for my
:: particular way of doing it. I don't care, it's correct and I like
:: it.

I guess the criticism is that, although correct, a leading underscore
indicates that a name is now *either* a member variable, or a global
implementation-specific name, or possibly both.

And the risk that someday a less knowledgeable programmer will come and
make a change to your code and follow your style but uses a capital
letter as first letter. One of the main reasons it'd discouraged is
probably to prevent people who don't know better from screwing up in
hard-to-debug ways.
 
J

James Kanze

On Jul 21 said:
John Harrison wrote>

This is, of course, false. Java is even more liberal than C++,
as it not only allows names to begin with either a _ or $ (the
latter is illegal in C++), but doesn't reserve any of them for
the implementation.
I guess the criticism is that, although correct, a leading underscore
indicates that a name is now *either* a member variable, or a global
implementation-specific name, or possibly both.

Not really. The criticism is that, regardless of what the
standard says, system headers commonly DO define macros which
start with a _, and assume that this will not cause problems.
Using a _ prefix is just asking for trouble.

In general, as others have pointed out, library code intended to
be considered part of the implementation will make extensive use
of such symbols, precisely because the user is not allowed to
define them.

Outside of such library code, it seems pretty universal to
distinguish member variables from other names. In principle, if
you name well, it shouldn't be necessary, but such conventions
certainly don't do any harm. In cases where the variable
represents an externally visible attribute, they also allow the
setter/getter functions to have the name of the attribute. I've
seen at least four different conventions for this:
_member
member_
m_member
myMember
The first is, as I've just said, looking for trouble. The
second is, IMHO, just too ugly. The latter two also have the
advantage of extending easily to distinguish between static
members (s_member, ourMember) and non-static members. I use the
last in my own code; I like the fact that the results are
pronouceable. But I'll willingly either, according to the
requirements of the local standards.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

Forum statistics

Threads
473,774
Messages
2,569,599
Members
45,165
Latest member
JavierBrak
Top