Slides of Presentation “C++11 (C++0x) in Visual C++ 2010″
A couple of months ago, I gave a presentation about C++11/C++0x features supported in Visual C++ 2010 for software engineers at my company. You can now download the slides.

Tag Archive for C++0xSlides of Presentation “C++11 (C++0x) in Visual C++ 2010″A couple of months ago, I gave a presentation about C++11/C++0x features supported in Visual C++ 2010 for software engineers at my company. You can now download the slides. ![]() C++11 Standard Published by ISOThe ISO International Organization for Standardization has now officialy published the C++11 standard
You can read the complete press release here. “Professional C++, Second Edition” Featured on the Microsoft VC++ Team BlogMy book “Professional C++, Second Edition”, published by Wiley/Wrox, is now featured in a dedicated post on the Microsoft Visual C++ Team Blog C++11 Now the Confirmed NameYesterday, I wrote a post about the fact that C++0x was unanimously approved. See also Herb Sutter’s update on his blog. Now I can finalize the last pieces for my “Professional C++, Second Edition” book (Wiley/Wrox). This is a great day for the C++ world! C++0x Unanimously ApprovedThe new C++ standard has been unanimously approved and is now an international standard. Introduction to the Standard Template LibraryStephan T. Lavavej (aka STL
I found them very interesting The C++0x Range-Based For LoopC++0x adds a new looping structure: the Range-Based for loop. This makes it easier to loop over elements of lists. It works with standard C arrays and types that have begin() and end() functions returning iterators like almost all STL containers. Below is an example of a range-based for loop looping over a standard C-style array, incrementing each value by 1.
Note that this example also uses the auto type deduction introduced in C++0x. |