Do you have a good book recommendation for c++0x?

link|improve this question

4  
Has anything changed since 2009? New books or tutorials? – grep Apr 15 '11 at 19:11
Has there been any development lately ? – Gaurav Jul 25 '11 at 7:56
feedback

closed as not constructive by Jeremy Banks, Bill the Lizard Sep 17 '11 at 21:58

This question is not a good fit to our Q&A format. We expect answers to generally involve facts, references, or specific expertise; this question will likely solicit opinion, debate, arguments, polling, or extended discussion. See the FAQ for guidance on how to improve it.

4 Answers

up vote 19 down vote accepted

C++[01]x isn't even out yet. How can you seek for a book then :) I guess the best book is the current working draft: Most recent working draft, and all the papers about proposals for the upcoming Standard Papers They are often nicely detailed and understandable. In particular the proposals listed at the C++0x Language Support for GCC Site.

Anyway, as much of the changes have to do with templates (variadic templates, concepts, static assertions) i recommend

C++ Templates - The Complete Guide

It's written by Vandervoorde (working for Edison Design Group, the only compiler frontend supporting export) and Josuttis (author of the book "The C++ Standard Library - Tutorial and Reference"), huh quite a bit of knowledge in that book!.

In addition, google provides a couple of videos about C++0x with rock-stars Bjarne Stroustrup and Douglas Gregor:

Google C++0x Videos

link|improve this answer
2  
It's not out yet but there is a bunch of new stuff to learn :) – Brian R. Bondy Jan 1 '09 at 0:23
I agree with litb. However, pay attention to anything Bjarne Stroustrup says about it. – BobbyShaftoe Jan 1 '09 at 0:48
feedback

Presentation Materials: Overview of the New C++ (C++0x) by Scott Meyers may meet your expectations.

link|improve this answer
feedback

I haven't found any general books on c++0x (what would they call it "Effective C++0X?"?). But here are few specifically about c++0x's new concurrency features. I imagine some of the parts of the language will be addressed as well at least in passing.

C++ Concurrency in Action is a forward looking book on c++ concurrency. It is primarily about writing good c++ concurrent code using the new features from c++0x. It is not yet published (and may not be until the standard is more finalized), but you can buy an early access edition and read the already completed chapters.

Herb Sutter is writing a book called Effective Concurrency, that will also be based on c++0x's new concurrency features. It's a little hard to find any references about the book, so I'm not sure when/if this book will be published.

link|improve this answer
feedback

To complete other's answer concerning books on C++0x:

  • Stroustrup said in several interviews he's working on a new edition of "The C++ Programming Language" that will be based on C++0x, so just wait for it.
  • Although Stroustrup said in an interview (or a conference) that it was a pain to write "Programming : Practice and princples using C++" without C++0x. You can guess he's preparing one using C++0X and that it will follow or precede the new edition of "The C++ Programming Language".
  • Herb Sutter and other references in the C++ world does have books partially based on C++0x as work in progress. Most of them are about parrallelisation.

None of those books are out or even finished, so you'll have to wait. Play with some compilers implementation first?

link|improve this answer
Thank you. Despite the shameful closing of this question, answers are helpful -- especially yours. I hope B.Stroustrup will come with TC++PL first, before "Practice..." and this time include decent TOC. – macias Nov 9 '11 at 11:45
feedback

Not the answer you're looking for? Browse other questions tagged or ask your own question.