Where to find C ++ 11 reference document / digital and book reference

Possible duplicate:
Where is the C ++ 11 standard located?

I want to buy / download a few things. First, I want both a digital copy and a paper copy of the official C ++ 11 link.

I would also like the book to be a summation of a link that focuses on things like the commonly used c / C ++ and STL functions, which is more accessible than the official link itself. It would also be great for both paper and digital versions. I do not need a book for beginners, just a link. This person is likely to be self-confident, so feel free to say which one you like.

+6
source share
3 answers

Nikolay Josuttis updated his book The C ++ Standard Library for C ++ 11 in April 2012. In particular, 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, forwarded lists, and unordered containers.
  • New STL Algorithms
  • tuples
  • Common Features and Type Utilities

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

  • Lambda
  • Range for cycles
  • Move semantics
  • Variadic patterns.

Josuttis also gave an interview about his new book .

+8
source

There are many great books in STL, there is a giant list on Amazon . Some of the most popular for STL:

For C ++ 11, there are many places for links, such as

+5
source

N3242 from articles for February 2011, the closest you can go to a freely available copy of the "official" standard C ++ 11 ...

+3
source

Source: https://habr.com/ru/post/912894/


All Articles