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?
|
|
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? |
||||||
|
closed as not programming related by FlySwat Sep 15 '08 at 21:06 |
|
|
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 |
||
|
|
|
|
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. |
||
|
|
|
|
There's no "best" style guide, they're all subjective. |
||
|
|
|
|
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 |
||
|
|
|
|
The coding style is a composition of
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. |
||
|
|
|
|
Scott Meyers' "Effective C++" is a good reference for this. |
||
|
|
|
|
See more tips at my Question: Favorite Coding Guidelines Checklist |
||
|
|
|
|
Linux Kernel Coding Style Guide (C only) |
||
|
|
|
|
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. |
||
|
|