6

Possible Duplicate:
Where is the c++11 standard

I am looking to buy/download a few things. First I want both a digital copy and paper copy of the official c++11 reference.

Also I would like a book that is a summation of the reference that focuses on things like commonly used c/c++ functions and the STL, something more accessible than the official reference itself. Also would be great for both paper and digital versions. I don't need a beginners book, just a reference. This one is probably going to be opinionated so feel free to say which one you like.

Community
  • 1
  • 1
EddieV223
  • 5,085
  • 11
  • 36
  • 38
  • SO's [Definitive C++ Book List](http://stackoverflow.com/questions/388242/the-definitive-c-book-guide-and-list) may be a reasonable start. True references on C++11 are still mostly in progress. – Jerry Coffin Apr 11 '12 at 02:38
  • By "official C++ reference", do you mean the Standard? Nothing else is official in any sense of the word. – Ben Voigt Apr 11 '12 at 02:48
  • Yes I mean the standard as the first thing. But also the second thing is a reference. – EddieV223 Apr 11 '12 at 18:19
  • @EddiV223 - you could look too at http://distrowatch.com - sometimes there are running little ads for to get a tutorial or e-book free - then you only need to complete a form with your e-mail address (humblesome) - but in the end you have then a complete e-book ... when am not wrong there recently was even an c++11-book and c++14 (is currently under development for windows only like C#, whatever should turn out of it for windows ...) :-) – dschinn1001 Sep 03 '14 at 04:35

3 Answers3

8

Nicolai Josuttis updated his book The C++ Standard Library for C++11 in April 2012. Specifically, it covers the following aspects:

  • Concurrency
  • Fractional arithmetic
  • Clocks and Timers
  • Random numbers and distributions
  • New smart pointers
  • Regular expressions
  • New STL containers, such as arrays, forward lists, and unordered containers
  • New STL algorithms
  • Tuples
  • Type traits and type utilities

It also covers the following new C++11 language elements:

  • Lambdas
  • Range-based for loops
  • Move semantics
  • Variadic templates.

Josuttis also gave an interview about his new book.

mavam
  • 12,242
  • 10
  • 53
  • 87
5

There are plenty of great books on the STL, there is a giant list available on Amazon. Some of the most popular ones for STL are

For C++ 11, there are plenty of locations for references, such as

josephthomas
  • 3,256
  • 15
  • 20
  • cppreference has a couple of off-line options (e.g. an HTML book), if you are looking for something like that. No PDF version unfortunately. You might also enjoy a cppreference mug, to use while curled up with the reference. – ergosys Apr 11 '12 at 02:54
3

N3242 from the February 2011 papers is the closest you can get to a freely-available copy of the "official" C++11 standard ...

Jason
  • 31,834
  • 7
  • 59
  • 78