Which C ++ book talks about recommended ways to organize large projects?

I would like to learn about books that talk about design issues, for example, when to use namespaces and other coding standards to write efficient, good-quality C ++ code. Also one that talks about code testing will be appreciated.

+4
source share
3 answers

"Large-scale software design in C ++" by John Lakos worked great for me many years ago, how to organize code in large projects.

When testing, this is not my area, and I cannot recommend a great book. What I can do is deny you Computer Testing, 2nd edition of Cem Kaner, Jack Falk and Hung Q. Nguyen . I found him harsh and extremely awkward. But please take this with salt.

+12
source

For large projects, it is important to follow a common design style and coding. Sequentially.

I found the following book useful in order to have a common language in a large project.

C ++ Coding Standards: 101 Rules, Recommendations and Recommendations by Andrei Alexandrescu, Herb Sutter

+1
source

Source: https://habr.com/ru/post/1303330/


All Articles