vote up 21 vote down star
27

I've been involved in developing coding standards which were quite elaborate. My own experience is that it was hard to enforce if you don't have proper processes to maintain it and strategies to uphold it.

Now I'm working in, and leading, an environment even less probable to have processes and follow-up strategies in quite a while. Still I want to uphold some minimum level of respectable code. So I thought I would get good suggestions here, and we might together produce a reasonable light-weight subset of the most important coding standard practices for others to use as reference.

So, to emphasize the essence here:

What elements of a C++ coding standard are the most crucial to uphold?

  • Answering/voting rules

    • 1 candidate per answer, preferably with a brief motivation.

    • Vote down candidates which focuses on style and subjective formatting guidelines. This is not to indicate them as unimportant, only that they are less relevant in this context.

    • Vote down candidates focusing on how to comment/document code. This is a larger subject which might even deserve its own post.

    • Vote up candidates that clearly facilitates safer code, which minimizes the risk of enigmatic bugs, which increases maintainability, etc.

    • Don't cast your vote in any direction on candidates you are uncertain about. Even if they sound reasonable and smart, or on the contrary "something surely nobody would use", your vote should be based on clear understanding and experience.

flag
show 6 more comments

37 Answers

1 2 next
vote up 52 vote down

Prefer RAII.

STL's auto (and shared in boost & C++0x) pointers may help.

link|flag
1  
I wasn't even aware of the term "RAII" until recently. I always considered the concept as "common sense". – Aardvark Oct 28 '08 at 13:35
1  
It amazes me how many C++ programmers don't know the RAII idiom. I've had to enforce this with a rule saying "Never use 'new' without checking with the team lead." – Kristopher Johnson Oct 28 '08 at 20:09
show 4 more comments
vote up 45 vote down

Use const identifiers by default. They provide guarantees for the reader/maintainer, and are way easier to build in than to insert afterwards.

Both member variables and methods would be declared const, as well as function arguments. const member variables enforce proper use of the initializer list.

A side-effect of this rule: avoid methods with side-effects.

link|flag
show 4 more comments
vote up 40 vote down

Use C++ casts instead of C casts

use:

  • static_cast
  • const_cast
  • reinterpret_cast
  • dynamic_cast

but never C-style casts.

How it clearly facilitates safer code, which minimizes the risk of enigmatic bugs, which increases maintainability, etc.

Each cast has limited powers. E.g., if you want to remove a const (for whatever reason), const_cast won't change the type at the same time (which could be a bug difficult to find).

Also, this enables a reviewer to search for them and then, the coder to justify them if needed.

link|flag
show 2 more comments
vote up 33 vote down

Use references instead of pointers where possible. This prevents constant defensive NULL checks.

link|flag
1  
+1 to the effect, not to the reasoning. i sometimes return null iterator, e.g. find(). is that bad? higher level languages that use reference types typically have a None object. – Dustin Getz Oct 28 '08 at 21:26
show 3 more comments
vote up 28 vote down

Keep functions to a reasonable size. Personally, I like to keep functions under 25 lines. Readability is enhanced when you can take a function in as a unit rather than having to scan up and down trying to figure out how it works. If you have to scroll to read it, it makes matters even worse.

link|flag
show 2 more comments
vote up 26 vote down

Make sure that your compiler's warning level is set high enough (/Wall preferably) so that it will catch silly mistakes like:

if (p = 0)

when you really meant

if (p == 0)

so that you don't need to resort to even sillier tricks like:

if (0 == p)

which degrade the readability of your code.

link|flag
3  
... and compile with WISE (Warning is Error) – xtofl Oct 28 '08 at 10:52
show 2 more comments
vote up 26 vote down

Use vector and string instead of C-style arrays and char *

Use std::vector whenever you need to create a buffer of data, even if the size is fixed.

Use std::string whenever you need to have a string.

How it clearly facilitates safer code, which minimizes the risk of enigmatic bugs, which increases maintainability, etc.?

std::vector: The user of a vector can always find its size, and the vector can be resized if needed. It can even be given (through the (&(myVector[0])) notation) to a C API. Of course, the vector will clean after itself.

std::string: Almost the same reasons above.And the fact it will always be correctly initialized, that it can't be overrun, that it will handle modifications gracefully, like concatenations, assignation, etc, and in a natural way (using operators instead of functions)

link|flag
show 6 more comments
vote up 25 vote down

assert all assumptions, including temporary assumptions, like unimplemented behavior. assert function entry and exit conditions if nontrivial. assert all nontrivial intermediate states. your program should never crash without an assert failing first. you can customize your assert mechanism to ignore future occurances.

Use error-handling code for conditions you expect to occur; use assertions for conditions that should never occur. Error handling typically checks for bad input data; assertions check for bugs in the code.

If error-handling code is used to address an anomalous condition, the error handling will enable the program to respond to the error gracefully. If an assertion is fired for an anomalous condition, the corrective action is not merely to handle an error gracefully—the corrective action is to change the program's source code, recompile, and release a new version of the software. A good way to think of assertions is as executable documentation—you can't rely on them to make the code work, but they can document assumptions more actively than program-language comments can [1].

  1. McConnell, Steve. Code Complete, Second Edition. Microsoft Press © 2004. Chapter 8 - Defensive Programming
link|flag
show 2 more comments
vote up 21 vote down

Know who is owner of that memory.

  • create objects on stack as much as possible (no useless new)
  • Avoid transfer of ownership unless really needed
  • Use RAII and smart pointers
  • If transfer of ownership is mandated (without smart pointers), then, document clearly the code (the functions should have a non-ambiguous name, always using the same name pattern, like "char * allocateMyString()" and "void deallocateMyString(char * p)".

How it clearly facilitates safer code, which minimizes the risk of enigmatic bugs, which increases maintainability, etc.?

Not having a clear memory ownership philosophy leads to interesting bugs or memory leaks, and time lost wondering if the char * returned by this function should be deallocated by the user, or not, or given back to a special deallocation function, etc..

As much as possible, the function/object allocating the memory must be the function/object deallocating it.

link|flag
show 1 more comment
vote up 20 vote down

Premature optimization is the root of all evil

Write safe and correct code first.

Then, if you have performance problems, and if your profiler told you the code is slow, you can try to optimize it.

Never believe you will optimize snippets of code better than the compiler.

When looking for optimizations, study the algorithms used, and potentially better alternatives.

How it clearly facilitates safer code, which minimizes the risk of enigmatic bugs, which increases maintainability, etc.?

Usually, "optimized" (or supposedly optimized) code is a lot less clearer, and tend to express itself through raw, near-the-machine way, instead of a more business-oriented way. Some optimizations rely of switchs, if, etc., and then will be more difficult to test because of multiple code paths.

And of course, optimization before profiling often lead to zero performance gain.

link|flag
vote up 19 vote down

Curly braces for any control statement. (Thanks to own experience and reinforced by reading Code Complete v2):

// bad example - what the writer wrote
if( i < 0 ) 
    printf( "%d\n", i );
    ++i; // this error is _very_ easy to overlook!  

// good example - what the writer meant
if( i < 0 ) {
    printf( "%d\n", i );
    ++i;
}
link|flag
2  
shrug, i think its subjective. for early bailout type checks the braces just get in the way. i'd be annoyed if this was in a coding standard. – Dustin Getz Oct 28 '08 at 21:28
1  
the indentation is more important than the braces - that's what shows you where something should be, the "++i;" will always stand out in well-indented code. – gbjbaanb Nov 1 '08 at 16:04
show 3 more comments
vote up 17 vote down

Side note: Do not impose SESE (Single Entry Single Exit) (i.e. do not forbid more than one return, the use of break/continue/...)

In C++, this is an utopia as throw is another return point. SESE had two advantages in C and exception-less languages:

  • the deterministic release of resources that is now neatly handled by the RAII idiom in C++,
  • making functions easier to maintain, that should not be a concern as the functions must be kept short (as specified by the rule of "one function, one responsibility")
link|flag
show 4 more comments
vote up 10 vote down

Only trivial use of the ? : operator, i.e.

float x = (y > 3) ? 1.0f : -1.0f;

is ok, but this is not:

float x = foo(2 * ((y > 3) ? a : b) - 1);
link|flag
2  
I agree with the spirit of this rule, but I think the non-trivial example you give is perfectly fine. I would disallow nested ternary operators. – Ferruccio Oct 28 '08 at 10:48
show 5 more comments
vote up 7 vote down

Use a lint tool - i.e. PC-Lint. This will catch many of the 'structural' coding guideline issues. Meaning things that read to actual bugs rather than style/readability issues. (Not that readability is not important, but it is less so than actual errors).

Example, rather than requiring this style:

if (5 == variable)

As a way of preventing the 'unintended assignment' bug, let lint find it.

link|flag
show 2 more comments
vote up 7 vote down

Don't add types or functions to the global namespace.

link|flag
show 1 more comment
vote up 7 vote down

Principle of least surprise.

Maybe it's not the "flavor" of rules you are looking for, but I'd definitely put it first.

It is not only the root, reason and sanity check for all the boring stuff like formatting and commenting guidelines, but - to me more importantly - puts the emphasis on the code being read and understood, rather than just compiled.

It also covers the only reasonable code quality measure I have ever encountered - WTF's per minute.

I'd use that first point to stress the importance and value of clear, consistent code, and to motivate the following items in the coding standard.

link|flag
vote up 6 vote down

Prefer standard-compliant code. Prefer to use the standard libraries.

link|flag
vote up 5 vote down

Forbid t[i]=i++; f(i++,i);, and so on as there is no (portable) guarantees regarding what is executed first.

link|flag
2  
"Undefined" is the word. What specifiy how the instructions are sequenced are the Sequence points, and there is no sequence point between the two evaluations of i and i++ in both examples. This is actually a quite well known issue in C&C++. See the FAQ C++ lite §39.15 and §39.16 – Luc Hermitte Oct 28 '08 at 20:46
show 3 more comments
vote up 5 vote down

Never use structs without proper constructors

structs are legal C++ constructs, used to aggregate data together. Still, the data should be always properly initialized.

All C++ structs should have at least a default constructor, which will set its aggregated data to default values.

struct MyStruct // BAD
{
   int i ; bool j ; char * k ;
}

struct MyStruct // GOOD
{
   MyStruct() : i(0), j(true), k(NULL) : {}

   int i ; bool j ; char * k ;
}

And if they are usually initialized in some way, provide a constructor to enable the user to avoid a C-style struct initialization:

MyStruct oMyStruct = { 25, true, "Hello" } ; // BAD
MyStruct oMyStruct(25, true, "Hello") ;      // GOOD

How it clearly facilitates safer code, which minimizes the risk of enigmatic bugs, which increases maintainability, etc.?

Having struct without a proper constructor leaves the user of this struct the task of initializing it. So, the following code will be copy pasted from function to function:

void doSomething()
{
   MyStruct s = { 25, true, "Hello" } ;
  // Etc.
}

void doSomethingElse()
{
   MyStruct s = { 25, true, "Hello" } ;
  // Etc.
}

// Etc.

Which means that, in C++, if you need to add a field in the struct, or change the order of the internal data, you have to go through all these initializations to verify each is still correct. With a proper constructor, modifying the internals of the structs is decoupled from its use.

link|flag
show 9 more comments
vote up 4 vote down

Method and variable names in a common naming scheme for consistency; I don't tend to be bother much by anything else while reading source.

link|flag
vote up 4 vote down

If the toolchain in use (or projected use) has an inefficient implementation of exceptions, it might be wise to avoid their use. I've worked under such conditions.

Update: here is someone else's rationale for "Embedded C++", which seems to exclude exceptions. It makes the following points:

  • It is difficult to estimate the time between when an exception has occurred and control has passed to a corresponding exception handler.
  • It is difficult to estimate memory consumption for exception handling.

There is more elaborate text on that page, I didn't want to copy it all. Plus, it's 10 years old so it might be of no use any longer, which is why I included the part about the toolchain. Perhaps that should also read "if memory is not considered a major problem", and/or "if predictable real-time response is not required", and so on.

link|flag
show 6 more comments
vote up 4 vote down

Always, always, always do proper data member initialization on object construction.

I ran into a problem where an object constructor was relying on some "default" initialization for its data members. Building the code under two platforms (Windows/Linux) gave different results and a hard-to-find memory bug. The result was that a data member was not initialized in the constructor, and used before it was initialized. On one platform (Linux), the compiler initialized it to what the code writer thought appropriate default. On Windows, the value was initialized to something - but garbage. On use of the data member, everything went haywire. Once the initialization was fixed - no more problem.

link|flag
vote up 3 vote down

Public inheritance must model The Liskov Substitution Principle (LSP).

Code reuse/import without substituability must be implemented with private inheritance when a very strong coupling makes sense, or with aggregation otherwise.

link|flag
vote up 3 vote down

Avoid using generated copy constructor and operator= by default.

  • If you want your object to be copiable.
    • If every attribute can be trivially copied, comment clearly you are using implicit copy constructor and operator= deliberately.
    • Otherwise, write your own constructors, using the initialization field to initialize attributes and following the header order (which is the real construction order).
  • If still don't know (default option) or you think you dont want to copy the objects of a certain class, declare its copy constructor and operator= as private. This way the compiler will let you know when you are doing something you don't want to do.
    class foo
    {
       //...
    private:
       foo( const foo& );
       const foo& operator=( const foo& );
    };

Or in a cleaner way if you are using boost:

    class foo : private boost::noncopyable
    {
      ...
    };
link|flag
show 3 more comments
vote up 2 vote down

Whatever guidelines, make it very easy to recognize applicability: the less choice you have, the less time you loose choosing. And the easier it becomes to brainparse the code.

Examples of 'hard to recognize':

  • No braces if only one line in the conditional body
  • Use K&R brace placement for namespaces, but put brace underneath conditions in function definition code
  • ...
link|flag
vote up 2 vote down

A point should be dedicated to explain the difference between value semantics and entity semantics. It could provide the typical code snippets about how copy is handled is the various cases.

See also Checklist for writing copy constuctor and assignment operator in C++

link|flag
vote up 1 vote down

Beware of C API

The C API can be very efficient, but will need exposed raw data (i.e. pointers, etc.), which won't help the safety of the code. Use existing C++ API instead, or encapsulate the C API with C++ code.

e.g.:

// char * d, * s ;
strcpy(d, s) ; // BAD

// std::string d, s ;
d = s ;        // GOOD

Never use strtok

strtok is not reentrant. Which means that if one strtok is started while another is not ended, one will corrupt the "internal data" of the other.

How it clearly facilitates safer code, which minimizes the risk of enigmatic bugs, which increases maintainability, etc.?

Using C API means using raw types, which can lead to interesting bugs like buffer overflow (and potential stack corruption) when a sprintf goes too far (or string cropping when using snprintf, which is a kind of data corruption). Even when working on raw data, malloc can be easily abused, as shown by the following code:

int * i = (int *) malloc(25) ; // Now, I BELIEVE I have an array of 25 ints!
int * j = new int[25] ;        // Now, I KNOW I have an array of 25 ints!

Etc. etc..

As for strtok: C and C++ are stack-enabled languages, that enable to user to not care about what functions are above his own on the stack, and what functions will be called below his own on the stack. strtok removes this freedom of "not caring"

link|flag
vote up 1 vote down

i think a coding standard document isn't the solution to this problem. The solution is to motivate your labor to learn/care about the human side of coding - "code for people first and computers last".

Obviously it is not possible to just fire the ones that don't care - but a standard document isn't going to help them much, either.

link|flag
show 2 more comments
vote up 1 vote down

Make sure destructors are defined as virtual:

 class GoodClass {
 public:
   GoodClass();
   virtual ~GoodClass()
 };

 class BadClass {
 public:
   BadClass();
   ~BadClass()
 };
link|flag
1  
No. It makes no sense to have the destructors from value classes virtual. Moreover, in /C++ Coding Standards/ H.Sutter and A.Alexandrecu recommend to make the destructor from a base class either public and virtual, or protected and non virtual. – Luc Hermitte Dec 17 at 13:59
show 2 more comments
vote up 1 vote down

Limit the types you use

If you need to use an integer type, choose one and keep it. This will avoid the problems associated with mixing of short, int, long, etc.. types.

// BAD
int i ;
long j ;
short k ;

// GOOD (if you choose the "int" as integer)
int i ;
int j ;
int k ;

The same goes for real types: Choose one (e.g. double), and do not use another.

Etc.

Note: There is still the issue of signed/unsigned, which can't always be avoided, and the fact STL use its own integer types (i.e. std::vector::size_type), but all the remaining code should not mixing.

Note 2: You could use typedef to "choose" your prefered type for signed integer and real numbers. This would enable a low-cost change if needed.

How it clearly facilitates safer code, which minimizes the risk of enigmatic bugs, which increases maintainability, etc.?

Some bugs are created by comparing unsigned type to signed types, mysterious loss of precision, or integer under/overflow.

Compilers usually send warnings at compile time, but then, the usually answer is to "cast" the warning away, which can help hide the error.

Edit

plinth made an useful comment I'll copy paste here:

Having written a lot of code that has to interact with things at the hardware level, I can't say much for this guideline. For this level of work, I prefer the integral types to be abstracted to names that include the precision (ie, int16, uint16, int32, uint32, etc.) – plinth Aug 18 at 20:50

plinth is right, of course. Sometimes you have to deal with int16, uint8 and other "precisely defined" types.

This does not invalidate the post above, only complete it.

The source of the bug is mixing different types (converting unsigned char into int, for example), thus, this kind of mixing must be avoided. The following rules thus apply:

  • Choose one generic integral type (e.g. int), and stick to it when dealing with generic integers (the same can be said about reals)
  • If (and only if) you need exact types (like uint8 or int16), use them
  • Never mix different types.
  • If you really must mix different types, then be very very cautious.

Below is an example of code that would break:

void * doAllocate(uint32 i)
{
   // try to allocate an array of "i" integers and returns it
}

void doSomething()
{
   uint32 i0 = 225 ;
   int8   i1 = 225 ;  // Oops...

   doAllocate(i0) ;   // This will try to allocate 255 integers
   doAllocate(i1) ;   // This will TRY TO allocate 4294967265
                      // integers, NOT 225
}
link|flag
show 6 more comments
1 2 next

Your Answer

Get an OpenID
or

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