vote up 3 vote down star
6

What are your favorite C++ coding style idioms? I'm asking about style or coding typography such as where you put curly braces, are there spaces after keywords, the size of indents, etc. This is opposed to best-practices or requirements such as always deleting arrays with delete[].

Here is an example of one of my favorites: In C++ Class initializers, we put the separators at the front of the line, rather than the back. This makes it easier to keep this up to date. It also means that source code control diffs between versions are cleaner.

TextFileProcessor::
TextFileProcessor( class ConstStringFinder& theConstStringFinder ) 

    : TextFileProcessor_Base( theConstStringFinder )

    , m_ThreadHandle  ( NULL )
    , m_startNLSearch (    0 )
    , m_endNLSearch   (    0 )
    , m_LineEndGetIdx (    0 )
    , m_LineEndPutIdx (    0 )
    , m_LineEnds      ( new const void*[ sc_LineEndSize ] )
{
    ;
}
flag
1  
It would be better to post your example as an answer ;-) – Leon Timmermans Nov 9 '08 at 18:01
This is practically a duplicate of stackoverflow.com/questions/66268/… or stackoverflow.com/questions/145570/…. – Aidan Ryan Nov 9 '08 at 18:10

16 Answers

vote up 14 vote down check

When creating enumerations, put them in a namespace so that you can access them with a meaningful name:

namespace EntityType {
    enum Enum {
        Ground = 0,
        Human,
        Aerial,
        Total
    };
}

void foo(EntityType::Enum entityType)
{
    if (entityType == EntityType::Ground) {
        /*code*/
    }
}
link|flag
no semicolon after namespaces required though. is that a typo? – Johannes Schaub - litb Nov 10 '08 at 18:55
A bad habit :) -fixed – kshahar Nov 11 '08 at 10:41
1  
How can an answer be "accepted" for such a question ? No offsense to kshahar, it's a good technique, but "accepting" an answer automatically brings it to the top and doesn't let a more democratic evaluation process to take place, which is a shame for a "what's your favorite..." question – eliben Nov 14 '08 at 20:39
I agree with this, except that I generally do it as classes. (This is because I have some code generation that lets me do enum-to-string and string-to-enum conversion automatically.) – Austin Ziegler Nov 18 '08 at 19:16
vote up 7 vote down

I like lining up code/initializations in 'columns'... Proves very useful when editing with a 'column' mode capable editor and also seems to be a lot easier for me to read...

int myVar        = 1;    // comment 1
int myLongerVar  = 200;  // comment 2

MyStruct arrayOfMyStruct[] = 
{   
    // Name,                 timeout,   valid
    {"A string",             1000,      true    },   // Comment 1
    {"Another string",       2000,      false   },   // Comment 2 
    {"Yet another string",   11111000,  false   },   // Comment 3
    {NULL,                   5,         true    },   // Comment 4
};

In contrast, the same code not indented and formatted as above would appear... (A little harder to read to my eyes)

int myVar = 1; // comment 1
int myLongerVar = 200; // comment 2

MyStruct arrayOfMyStruct[] = 
{   
    // Name, timeout, valid
    {"A string", 1000, true},// Comment 1
    {"Another string", 2000, false }, // Comment 2 
    {"Yet another string", 11111000,false}, // Comment 3
    {NULL, 5, true }, // Comment 4
};
link|flag
vote up 7 vote down

re: ididak

I fix code that breaks long statements into too many short lines.

Let's face it: it's not the 90's any more. If your company can't afford widescreen LCDs for its coders, you need to get a better job :)

link|flag
Even if your monitor wrapped all the way around your head, shorter lines would be easier for you to take in. Let the code context determine if the line needs to be long; usually it doesn't. – Mark Ransom Nov 9 '08 at 22:39
I put multiple windows side by side on wide screens. I'd like to be able to (read) code on a laptop as well. – ididak Nov 10 '08 at 0:08
Most of the time, it shouldn't be necessary to see all of that really long line to understand at a glance what it does. – korona Nov 11 '08 at 10:49
Okay, let's make it 120 and call it a deal :) – utku_karatas Nov 11 '08 at 11:00
You get my +1 vote. There are times when wrapping long lines does help, but to automatically wrap a line just because it hits the 80 column mark is just stupid. – jussij Nov 11 '08 at 23:17
vote up 6 vote down

You are talking about coding style here, not idioms.

link|flag
vote up 4 vote down

No favorites but I will fix code that has:

  1. tabs - causes misalignment in many IDEs and code review tools, because they don't always agree on tab at mod 8 spaces.
  2. lines longer than 80 columns - let's face it, shorter lines are more readable. My brain can parse most coding conventions, as long as the lines are short.
  3. lines with trailing whitespaces - git will complain about it as whitespace errors, which show up as red blobs in diffs, which is annoying.

Here is a one-liner to find the offending files:

git grep -I -E '<tab>|.{81,}|  *$' | cut -f1 -d: | sort -u

where <tab> is the tab character (POSIX regexp doesn't do \t)

link|flag
Well TAB characters should be used for indenting, not formatting. Spaces should be used for formatting. That way the code will show up nicely with any TAB width setting. And TABs should be 8 characters anyway. – Terminus Nov 11 '08 at 11:23
Heh... Trailing whitespace is so annoying! I have to bite my tongue whenever I'm watching someone code and they leave in spaces at the end of the line (say, when breaking a line by putting the cursor after a space and hitting Enter). – Owen Dec 18 '08 at 7:53
The problem with trailing whitespace is you can't see it. – FryGuy Jan 14 '09 at 22:47
vote up 3 vote down

in if functions wen there are difficult conditions the formating shows clearly on witch level the condition is

if (  (  (var1A == var2A)
      || (var1B == var2B))
   && (  (var1C == var2C)
      || (var1D == var2D)))
{
   // do something
}
link|flag
Spelling errors and typos also get corrected in code that I work on! – littlenag Nov 10 '08 at 0:56
If this was my code I would put the two || conditions on the same line, but split the && conditions as you have done, resulting in a 2 line if statement. – jussij Nov 11 '08 at 23:16
vote up 1 vote down

Not sure if this counts as an idiom, but I tend to use doxygen-style inline comments even when the project isn't -yet- using doxygen...

bool MyObjects::isUpToSomething() ///< Is my object up to something

(aside. my comments are not usually quite that lame.)

link|flag
vote up 1 vote down

I really like putting a small expression on the same line as an if

int myFunc(int x) {
   if(x >20) return -1;
   //do other stuff ....
}
link|flag
1  
Yep, good for guard clauses. Nevertheless I always put curly braces around the conditional statement. It has proven to be more maintainable for me. – mxp Nov 11 '08 at 12:42
I generally don't use the curly braces if I'm doing it all on one line. If the line ends up long enough that I want to break it, though, I add the braces. – Adam Jaskiewicz Nov 11 '08 at 23:12
vote up 1 vote down

It's useful to put function names on a new line, so you can grep like

grep -R '^fun_name' .

for them. I've seen that style used for a loads of GNU projects and like it:

static void
fun_name (int a, int b) {
    /* ... */
}
link|flag
An alternative that doesn't require this convention: egrep -r 'main\([^)]*\)\s?\{' . – admittedly, not nearly as simple, and requires arguments and opening brace on the same line. – Konrad Rudolph Nov 11 '08 at 22:55
vote up 1 vote down

After working with someone who was partly blind - and at his request - I switched to using many more spaces. I didn't like it at the time, but now I prefer it. Off the top of my head, the only place where there isn't whitespace between identifiers and keywords and whatnot is after a function name and before the following parentheses.

void foo( int a, int b )
{
  int c = a + ( a * ( a * b ) );
  if ( c > 12 )
    c += 9;
  return foo( 2, c );
}
link|flag
One guy at my work puts a space before his semicolons. Drives me nuts. – Owen Dec 18 '08 at 7:55
vote up 0 vote down

Write each method or function argument on a separate line such that it can be easily commented.

int ReturnMaxValue(
    int* inputList,   /* the list of integer values from which to get the maximum */
    long size,        /* count of the number of integer values in inputList */
    char* extraArgs   /* additional arguments that a caller can provide.    */
)
link|flag
Use meaningful variable names rather than comments: int ReturnMaxValue(int *inputList, long inputListSize). The comment about extraArgs told me just about as much as the variable name - nothing (yeah, I know it's just an example but it's not a really good one). – Andreas Magnusson Nov 10 '08 at 11:10
Completely concur with Andreas. If you really need to be documenting your parameters, use Doxygen format. – Austin Ziegler Nov 18 '08 at 19:18
vote up 0 vote down

Document the return values on the function line, so they are very easy to find.

int function /* return 1 on success, 0 on failure */ 
{
    return 1;
};
link|flag
Putting a superfluous semicolon at the end of a block that doesn't need a semicolon is one of my least favorite C++ coding style idioms. – bk1e Nov 9 '08 at 18:39
feel free to edit it – EvilTeach Nov 9 '08 at 18:53
This style suggestion doesn't help on anything but the simplest return values. – Austin Ziegler Nov 18 '08 at 19:19
Nonsense. You can make the comment as large or small as necessary. When the question arises, "What does this thing return?" where do you go? users guide? hpp file? cpp file? If you go look at the function, it's right there. Most IDEs can pick the comment up and show it to you in context. – EvilTeach Nov 23 '08 at 14:52
Reading thorough the code trying to figure out what a function returns is a squandering of developer time. Do everyone a favor, comment your return values, in a place that is easy to find. – EvilTeach Nov 23 '08 at 14:54
vote up 0 vote down

I always nitpick and edit the following:

  • Superfluous newlines
  • No newline at EOF
link|flag
vote up 0 vote down

I usually stick to KNF described in *BSD STYLE(9)

link|flag
vote up 0 vote down

RAII + smart pointers = who needs garbage collection?

link|flag
vote up 0 vote down

I tend to put an else on all of my ifs.

if (condition)
{
    complicated code goes here
}
else
{
    /* This is a comment as to why the else path isn't significant */ 
}

Even though it annoys my coworkers. You can tell at a glance, that I considered the else case during coding.

link|flag
If the code in the true case is so complicated, it probably needs to be a separate function/method. That will reduce the need for a useless else block and annoy your coworkers less. – Austin Ziegler Nov 18 '08 at 19:20

Your Answer

Get an OpenID
or

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