Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

What C++ book talks about recommended ways of organizing big projects? [closed]

I would like to know about books that talk about design issues like when to use namespaces and other coding standards to write good quality efficient C++ code. One that talks about Code testing will also be appreciated.

like image 792
user855 Avatar asked Dec 12 '22 23:12

user855


1 Answers

"Large-Scale C++ Software Design" by John Lakos worked great for me years ago on how to organise code in large projects.

On testing, this is not my area, and I cannot recommend a great book. What I can do is discourage you from getting "Testing Computer Software", 2nd edition by Cem Kaner, Jack Falk and Hung Q. Nguyen. I found it severely dated and extremely clumsy. But please take this with a grain of salt.

like image 185
CesarGon Avatar answered Dec 15 '22 14:12

CesarGon