vote up -1 vote down star

I've worked at a number of places, some without style guides, some with style guides.

By style I mean guidelines for indent, comments, braces, prototypes, and so forth

What is the best coding style for C/C++ you've used and why?

flag
Please stop with these questions. – Rich B Sep 15 '08 at 19:56
This is not a discussion forum. Please refer to stackoverflow.com/faq – John Sheehan Sep 15 '08 at 19:57
People could just vote on the style guide they like – bene Sep 15 '08 at 20:00

closed as not programming related by FlySwat Sep 15 '08 at 21:06

10 Answers

vote up 3 vote down check

Google C++ Coding Style Guide

link|flag
vote up 0 vote down

Coding standards are opinions some of those opinions are reasoned and others just happened to be the preference of by the author(s) when the document was created/updated. Follow the existing code is not a bad way to go in general. Picking an existing standard rather than writing your own makes sense. No one will remember a huge number of arbitrary rules, so minimal and pragmatic is prudent. If I were tasked with defining a coding standard I would also include configuration for (most of) the editors used, so the things are correct by default. I would also figure out how to configure indent or similar tool to format the code according to the standard as this is ultimately the only way you can enforce the standard.

/Allan

link|flag
vote up 0 vote down

As someone wise once said, "I believe most code should be indented six feet under and covered with dirt."

Many companies have coding styles that define unimportant stuff like where to put braces and how far to indent them. Few companies have coding styles that define important stuff like how to modularize code or how to isolate your modules to reduce interactions. So I guess what I'm saying is that coding style isn't very important.

For the specific question, use whichever coding style makes you happy. Besides the styles already mentioned, I'll throw in the GNU Coding Standards.

link|flag
vote up 1 vote down

There's no "best" style guide, they're all subjective.

link|flag
vote up 3 vote down

Its worth noting that there are at least three generations of the C++ language out there, each of which has its own style of coding.

The current way is the post 1999 style of standardized C++ where (for example) std::string is used instead of 'char *' and std::vector instead of arrays. But a new version of the standard is on the way which will deprecate existing guidelines and create new ones.

An excellent overview of this is the interview with Kevlin Henney on Software Engineering Radio

link|flag
vote up 1 vote down

The coding style is a composition of

  1. Well-defined "Best practices" (e.g. Scott Meyer's Effective C++ and More Effective C++ books)
  2. Whatever is in use at your organization (because everyone working there already knows it well)

You also need to remember that coding style should be "guidelines" not "rules", so some deviation from the guidelines in favour of simpler code must be acceptable.

link|flag
vote up 0 vote down

Scott Meyers' "Effective C++" is a good reference for this.

link|flag
vote up 0 vote down

See more tips at my Question: Favorite Coding Guidelines Checklist

link|flag
vote up 1 vote down

Linux Kernel Coding Style Guide (C only)

link|flag
vote up 0 vote down

Whatever someone else has started. Its better to fit in than to cause extra drama. Though don't mix tabs and spaces, and agree on a line ending.

link|flag

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