1

Possible Duplicates:
C And C++ Coding Standards
What existing style and coding standard documents should be used on a C++ project?

How to acheive coding standards in C++? Any reference books?

Community
  • 1
  • 1
Supriyo
  • 97
  • 3
  • 6

4 Answers4

6

You can't afford to ignore C++ Coding Standards by Herb Sutter and Andrei Alexandrescu.

Jerry Coffin
  • 476,176
  • 80
  • 629
  • 1,111
2

Sutter and Alexandrescu, C++ Coding Standards, 220 pgs, Addison-Wesley, 2005, ISBN 0-321-11358-6

is recomended by the C++ FAQ Lite (http://www.parashift.com/c++-faq-lite/coding-standards.html)

If you're curious about what sorts of things this book describes, http://www.gotw.ca/publications/c++cs.htm contains a table of contents.

jkerian
  • 16,497
  • 3
  • 46
  • 59
0

C++ Coding Standards by Sutter and Alexandrescu is very good.

Brian Neal
  • 31,821
  • 7
  • 55
  • 59
0

The C++ FAQ (lite) has lots of information that is relevant to a coding standard.

Richard
  • 106,783
  • 21
  • 203
  • 265