C++ Learning Materials - Books

The books on the list are the ones I have read and would recommend to others. For some books, reviews from goodreads are included because I completely agree with them.

1. If you do not know C++, start with C++ Primer (5th edition)

“A really good C++ book for beginners. I mean, it probably won't work as the very first book on programming, but if you have some programming background and just want to learn C++, this should work really well. The whole thing is structured very nicely, and in the rare case when you have some questions, they are typically answered on the next page.“

2. If you are familiar with C++ but want to refresh your knowledge, use A Tour of C++ written by Bjarne Stroustrup, the creator of C++.

”Given that I've programmed in C++ before this book was perfect for me as a re-introduction.
It doesn't really explain things in depths, but it is rather just a very quick tour of the features. Perfect for someone who's an experienced programmer and has done some low level programming, but not very useful for beginners I'm afraid. Still I'd recommend reading this, if nothing it servers as a good motivational text to keep learning more.”

3. If you want to learn about every detail of C++ with C++11 support, use The C++ Programming Language book

4. If you want to start practicing Test Driven Development (TDD) with C++, start with Modern C++ Programming with Test-Driven Development: Code Better, Sleep Better

5. If you want to use C++11 and C++14 features and to understand them, start with Effective Modern C++: 42 Specific Ways to Improve Your Use of C++11 and C++14

6. If you want to write multithreaded code using C++, use C++ Concurrency in Action: Practical Multithreading

7. For Math theory and generic programming use Elements of programming and From Mathematics to Generic Programming

24