VS2010支持C++11特性的部分記錄:
語言特性:
1. 右值引用
2. static_assert
3. auto
4. decltype 類型提取
5. 結尾返回類型,即函數返回類型聲明后置,類似於auto func(int i, int j) -> int;
6. Lambdas表達式
7. 雙右尖括號>>
8. nullptr
9. 內存對齊其字節說明和獲取,alignas、alignof ,此與sizeof區別,前者為對齊字節數,后者為補齊后的字節數,且前者影響后者
10. override、final關鍵字
11. <exception> 中的exception_ptr
C++標准庫:
0. <algorithm>
1. <bitset>
2. <codecvt>
3. <complex>
4. <exception>
5. <functional>
6. <initializer_list>
7. <iterator>
8. <limits>
9. <locale>
10. <memory>
11. <new>
12. <numeric>
13. <ratio>
14. <regex>
15. <stdexcept>
16. <string>
17. <system_error>
18. <tuple>
19. <typeindex>
20. <typeinfo>
21. <type_traits>
22. <utility>
23. <valarray>
24. <array>
25. <deque>
26. <forward_list>
27. <list>
28. <map>
29. <queue>
30. <set>
31. <stack>
32. <unordered_map>
33. <unordered_set>
34. <vector>
35. <fstream>
36. <iomanip>
37. <ios>
38. <iosfwd>
39. <istream>
40. <ostream>
41. <sstream>
42. <streambuf>
C標准庫:
1. <cassert>
2. <cctype>
3. <cerrno>
4. <cfloat>
5. <ciso646>
6. <climits>
7. <clocale>
8. <cmath>
9. <csetjmp>
10. <csignal>
11. <cstdarg>
12. <cstddef>
13. <cstdint>
14. <cstdio>
15. <cstdlib>
16. <cstring>
17. <ctime>
18. <cwchar>
19. <cwctype>
不支持庫:
//#include <chrono>
//#include <ratio>
//#include <atomic>
//#include <condition_variable>
//#include <future>
//#include <mutex>
//#include <thread>
//#include <cfenv>
//#include <cinttypes>
//#include <cstdbool>
//#include <ctgmath>
//#include <cuchar>