Further Reading
Note: This book has now inspired a video series from O’Reilly, Learning C++ Best Practices
- https://github.com/isocpp/CppCoreGuidelines The C++ Core Guidelines are a set of tried-and-true guidelines, rules, and best practices about coding in C++
- https://www.gitbook.com/book/alexastva/the-ultimate-question-of-programming-refactoring-/details - The Ultimate Question of Programming, Refactoring, and Everything
- http://llvm.org/docs/CodingStandards.html - LLVM Coding Standards - very well written
- http://geosoft.no/development/cppstyle.html
- https://google.github.io/styleguide/cppguide.html (Note that Google’s standard document makes several recommendations which we will NOT be following. For example, they explicitly forbid the use of exceptions, which makes RAII impossible.)
- https://isocpp.org/faq/
- http://www.cplusplus.com/
- http://www.gamasutra.com/view/news/128836/InDepth_Static_Code_Analysis.php - Article from John Carmack on the advantages of static analysis
- https://svn.boost.org/trac/boost/wiki/BestPracticeHandbook - Best Practice Handbook from Nial Douglas
- http://sourceforge.net/apps/mediawiki/cppcheck/index.php?title=ListOfChecks
- http://emptycrate.com/
- http://stackoverflow.com/questions/tagged/c%2b%2b-faq?sort=votes&pageSize=15 - StackOverflow C++ FAQ
- http://codergears.com/qacenter/ discussion center for C and C++ best practices
- http://www.viva64.com/en/b/0391/ The Ultimate Question of Programming, Refactoring, and Everything