Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

C++ by example book [closed]

Tags:

c++

I was programming in c++ at university but have been programming in java for most of my professional life(about 5 years) but I now need to recapture those c++ skills. I have tried a couple of books but they are too basic. Is there some kind of example book on c++ that I can use to revisit c++ in a project style format?

like image 325
Farouk Alhassan Avatar asked Jun 19 '26 05:06

Farouk Alhassan


1 Answers

When I was in a similar situation I read Scott Meyers' books. They both helped me to refresh C++, as well as widen my knowledge. Start with Effective C++ which contains a number of basic dos and don'ts with C++ to avoid common pitfalls.

http://aristeia.com/books.html

like image 106
Anders Abel Avatar answered Jun 20 '26 18:06

Anders Abel