Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Learning about C++ 0x features

Tags:

c++

c++11

What is a good place to learn about the new C++ 0x features? I understand that they may not have been fully finalized yet but it would be nice to get a head start. Also, what compilers currently support them?

like image 917
pranavsharma Avatar asked Dec 16 '09 08:12

pranavsharma


2 Answers

An easy and fun way to learn about it is to watch the C++0x Overview Google Techtalk. Another good source is Bjarne Stroutstrup's C++0x FAQ which covers a huge portion of the new features.

like image 191
Michael Aaron Safyan Avatar answered Sep 30 '22 18:09

Michael Aaron Safyan


For compiler support you can look here : C++0xCompilerSupport.

Compilers:

PAPER(S)
HP aCC
EDG eccp
gcc
Intel C++
MSVC
IBM XLC++
Sun C++
C++ Builder 2009/10

like image 42
anno Avatar answered Sep 30 '22 19:09

anno