Page 1 of 1

Any good C++ books out there?

Posted: Thu Oct 03, 2013 4:33 pm
by Sslaxx
As it says really: anyone know of any good books to learn from (or to brush up with)? Feel the need to revise what (little) I know about C++, and catch up on it (especially with C++11 out there).

Suggestions?

Re: Any good C++ books out there?

Posted: Thu Oct 03, 2013 5:31 pm
by Faranwath
The absolute reference would have to be Bjarne Stroustrup's "The C++ Programming Language", 4th edition. I can assure you it's quality stuff.

Re: Any good C++ books out there?

Posted: Thu Oct 03, 2013 7:29 pm
by PhilipLB
Effective C++ and More Effective C++!

Re: Any good C++ books out there?

Posted: Fri Oct 04, 2013 2:36 am
by Klaim
Faranwath wrote:The absolute reference would have to be Bjarne Stroustrup's "The C++ Programming Language", 4th edition. I can assure you it's quality stuff.
Not for learning...

Re: Any good C++ books out there?

Posted: Fri Oct 04, 2013 7:14 am
by cybereality
Yeah, totally. I would highly recommend "C++ Primer Plus" by Stephen Prata and "C++ Primer" by Stanley B. Lippman (similar names, no relation, read them in that order).

Both have been updated for C++11 and are really great material to learn from.

Re: Any good C++ books out there?

Posted: Fri Oct 04, 2013 6:52 pm
by Faranwath
Not for learning...
... how to program. Granted, but for learning C++ I still think it's far a better choice than any Primer.

Re: Any good C++ books out there?

Posted: Fri Oct 04, 2013 7:00 pm
by spookyboo

Re: Any good C++ books out there?

Posted: Fri Oct 04, 2013 7:03 pm
by Klaim
Faranwath wrote:
Not for learning...
... how to program. Granted, but for learning C++ I still think it's far a better choice than any Primer.
I don't agree. It's not good for learning C++ too. I mean it have all the information and it's quite good when you have some basics, but it's still not a good introduction book frankly.
But it's a must-read to complete your knowledge of C++. I really wouldn't recommend it for programmers wanting to learn C++.

That being said, I didn't read the last edition for C++11 so I might be wrong.

Re: Any good C++ books out there?

Posted: Fri Oct 04, 2013 7:15 pm
by Faranwath
@Klaim: I see your point, really. C++ is quite big, and when you add the C-inherited odd stuff... well, I'm sure you know what I mean. TCPL4 is, in my opinion, an improvement over TCPL3. I enjoyed the first chapter, much as I did with the one in "Programming: Principles and Practice using C++".
At the end, I think it's a matter of choice. True, "C++ Primer" 5th edition is a lot more "reader-friendly", so to say, but I regard Bjarne's as a great book on C++. Don't get me wrong, I'm not making a Bible out of it or anything like that, but I did like reading it.

Re: Any good C++ books out there?

Posted: Fri Oct 04, 2013 7:22 pm
by Klaim
Well it's nice to hear that then. I'll wait for a C++14 version to be released before getting this one again.

Re: Any good C++ books out there?

Posted: Sun Apr 20, 2014 6:28 pm
by diegomp1982
PhilipLB wrote:Effective C++ and More Effective C++!
I can only totally agree! This and "Design Patterns: elements of reusable object-oriented software" (http://www.amazon.co.uk/Design-patterns ... 0201633612) are the two pillars for any programmer starting to do serious stuff in C++. The second book is not C++ oriented, but it is still fundamental.