arrow_upward
C++ Resources
#1
Looking at learning c++ 
Anyone recommend any good sites / books??



[+] 1 user Likes jimjam0012's post
#2

RE: C++ Resources.

Registered Members Only

You need to be a registered member to see more on RE: C++ Resources.
Login or Sign up to get access to a huge variety of top quality leaks.



#3

RE: C++ Resources.

Registered Members Only

You need to be a registered member to see more on RE: C++ Resources.
Login or Sign up to get access to a huge variety of top quality leaks.


I personally have read Meyers' "Effective" series. It is relatively popular. As it is mentioned in the answer on the link, it highlights best practices, as well as advanced techniques in the "More effective" one. As long as I can recall, I think many things described in the latter book are not being the best solutions for the specific problem it solves, since it was written more than 2 decades ago, although it can be handy if you have to work with older libraries.

All in all, if you can already program in c++, i recommend reading Effective c++ 3rd edition, and Effective modern C++ afterwards. This should update your knowledge up until C++14.

If you can't program in it yet, you can look up the mentioned introductory books from the link I pasted.
As a sidenote, cppreference.org will be your best friend while learning. It is a neat documentation by the previous, current and upcoming standards, and also has some descriptions about the parts of the language.



#4
Honestly the best way to learn isn't by reading some book, but it's by trying yourself. Find some youtube videos or google some "guides" to get you started, and then make something. Then try changing variables and certain things to see how the program reacts. Best way to learn.