3

I am trying to make the most of the new standart. However, I am having dificult in find solid information about C++11 like good explanations on the new keywords and syntax.

Another problem has been to find information about s*ome new features on the std*. With exception of the wikipedia and the C++ Annotations, I cannot find any other information.

The same is true for the TR1.

Thank you for any help.

Claudio Junior
  • 295
  • 3
  • 12
  • Find the latest standard draft and try it... or buy the standard copy. – Griwes Oct 14 '11 at 14:10
  • 5
    AFAIK, TR1 should be headed towards irrelevance. Everything in TR1 has either been incorporated into C++11, or it hasn't. The things that have, you should be switching to the `std::` version as soon as your compiler supports it. The things that haven't, are in effect abandoned (for now, there could yet be a TR2) so move away from them. TR1 is only interesting now in that it's a little bit more portable than an extension that's purely the invention of one compiler/library vendor. It's no longer a view of what the future might look like, as it originally was. – Steve Jessop Oct 14 '11 at 14:12
  • @Griwes: That's not really a good explanation of new keywords and syntax. – UncleBens Oct 14 '11 at 14:12
  • Not complete yet, but a lot of work is being put into this site: http://en.cppreference.com/w/cpp Special thanks to fellow Stack Overflower @Cubbi – Benjamin Lindley Oct 14 '11 at 14:15
  • 1
    wikipedia has been the most useful for me, you probably could take that and the full spec and get the rest of the depth you believe you are missing. – Tom Kerr Oct 14 '11 at 14:15
  • @UncleBens: that's why it isn't answer, but comment... – Griwes Oct 14 '11 at 14:21
  • No idea if this will work for you: http://chat.stackoverflow.com/transcript/10?m=1628061#1628061 – R. Martinho Fernandes Oct 14 '11 at 14:33
  • Stroustrup has written a fairly comprehensive overview of the new C++11 features: http://www2.research.att.com/~bs/C++0xFAQ.html – Mike Seymour Oct 14 '11 at 15:20
  • See here: http://stackoverflow.com/questions/81656/where-do-i-find-the-current-c-or-c-standard-documents – Martin York Oct 14 '11 at 16:54

2 Answers2

3

The latest working draft of C++11 standard (which is N3291 at this time) is available for download here.

Edit: It seems that N3291 is not available for public download, you can download the previous version (N3242) instead.

fardjad
  • 20,031
  • 6
  • 53
  • 68
  • 1
    They removed n3291 (FDIS) a few days after its publication, my bet is that there was no (or little) change in the Standard. – Matthieu M. Oct 14 '11 at 14:56
1

Start with the Wikipedia page.

If you are using GCC then check their status page as well. On the GCC status page you can also find links to many of the proposals for the features. This does not have the new standard library of course.

Some programmer dude
  • 400,186
  • 35
  • 402
  • 621