up vote 28 down vote favorite
35
share [g+] share [fb]

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.

link|improve this question
1  
An alternative approach, is to take an existing coding standard (eg. AV JSF, MISRA C++, www.codingstandard.com) and then post the rules you feel are good candidates. – Richard Corden Oct 28 '08 at 12:33
show 5 more comments
feedback

40 Answers

1 2

I suggest just requiring developers to read a bunch of guidelines, and the effective C++ and more effective C++ books by Meyers.

If you want lightweight, you are going to have to rely on common sense and a common ideal.

Code reviews help enforce this as well.

To keep it lightweight I would avoid a document and code police. Praise good code publicly.

EDIT - I started with a comment here, but will put it in the response for ease of viewing:

reviews done correctly will do wonders - but you can't allow reporting hierarchies into the review and no statistics with people's names can be on the review results.

Make sure to keep the document small and be sure to give REASONS for the "rule"/guideline. Without that then you ae just demanding blind obedience. With rationale and reasons you educate so that actually posting/writing the "rule" becomes unneeded. (as the concept will be internalized)

link|improve this answer
show 1 more comment
feedback

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|improve this answer
show 2 more comments
feedback

Base your coding style off of "C++ Coding Standard" (Sutter/Alexandrescu), and only document where you deviate from it. I cannot take any "C++ Coding Standard" serious that doesn't.

link|improve this answer
feedback

Rule 0 should always be:

Document any deviations from this standard

Some problems may necessitate non-adherence to a particular standard.

These cases must be documented and justified because they indicate a deviation from the expected idioms in the codebase.

Not documenting them can cause bugs because:

  1. A future maintainer may bring the code to compliance without understanding why it was non-compliant in the first place.

  2. A future developer may expect the code to conform and so make incorrect assumptions about its meaning.

link|improve this answer
feedback

The best standards are those that are small and tightly focussed on what really matters to making quality code. They do not try to teach coding, they do not try to force a particular way of coding. They generally stick to consistency features and subjective reviews (eg, if the rest of your team think a piece of code is readable, fits with the consistency rules, and is commented, then its always going to be good code)

So to re-emphasise: consistency - naming convention, whitespace management, commenting blocks, directory structure. Nothing else really matters

Edit for Dustin: the big problem with standards comes with the exceptions. If you have a standard that says "1 statement per line", you cannot write the following made-up example:

SetColText(1,"col1"); SetColWidth(1, 10);
SetColText(2,"col1"); SetColWidth(2, 10);
...
SetColText(9,"col1"); SetColWidth(9, 10);

But I'd say that was more readable, and therefore less error-prone that splitting them up. (I'm sure you can come up with better examples).

This is my point - telling people how to write code, and how to format it to strict rules is always going to fall over in ways and places you didn't anticipate. So its far better to trust your coders to do it right after enforcing a few rules. If they have a few rules to follow, they will write good, disciplined code so you won't need the rest of the crappy rules.

You see some standards that go on for pages and pages. (The Philips C# one is 48 fecking pages long!)

So, given that you have a team of quality coders, what do you need to do to make it easier to work with their code? the answer is always consistency of 'where' they put the code, not how they write it. eg. you always have a bin, and obj directory in your project is a good standard. You can pick up any project and know where things are .. unlike someone building all his binaries in his c:/mybin directory because its easier for him.

link|improve this answer
show 1 more comment
feedback

Make sure destructors are defined as virtual:

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

 class BadClass {
 public:
   BadClass();
   ~BadClass()
 };
link|improve this answer
3  
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 '08 at 13:59
show 3 more comments
feedback

The Art of Computer Programming Tome{1,2,3}

link|improve this answer
feedback

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|improve this answer
show 6 more comments
feedback

No tabs (allows better use of external/other tools) and a fixed spaces inserted for tabs.

link|improve this answer
1  
subjective style/formatting. i prefer tabs. – Dustin Getz Oct 28 '08 at 11:21
2  
-1. Tabs should always be used for indentation, everything else can be spaces, but tabs should always be used for indentation. – ephemient Oct 28 '08 at 15:07
1  
This is one area you do need to pick a rule (or actually put in a tool, not just handwave and say a tool could do that). Code has to be either all-tabs or all-spaces, anything in between is broken. – soru Aug 31 '09 at 15:31
show 5 more comments
feedback

Sort functions in class declarations and definitions by name. This makes it easier to locate them in the .cpp file. Also, it frees your mind because you don't have to think about where to put your new function.

link|improve this answer
4  
i group my methods by functionality - e.g. string::begin() would be adjacent to string::end() – Dustin Getz Oct 28 '08 at 21:20
1  
Yeah, this is silly. I agree with Dustin. – Ed S. Aug 18 '09 at 21:22
show 3 more comments
feedback
1 2

Your Answer

 
or
required, but never shown

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