c++ 演进,环境与资源-侯捷笔记
Kong Liangqian Lv6

c++ 2.0 新特性包括语言和标准库两个层面,后者以header files形式呈现

  • 标准库的头文件是不带.h的,例如#include <vector>
  • 新式C头文件也不带.h,在前面加上c,如#inlucde<cstdio>,而不是#include<stdio.h>

早期在std::tr1现在都已经到了std里面了

了解你的编译器对c++2.0的支持度

搜索compiler support for c++11 and c++14

相关资料

  • 搜索 c++11 the new ISO c++ standard, c++之父资料
  • www.cpluscplus.com
  • en.cppreference.com
  • gcc.gnu.org

查看自己的c++支持版本

1
2
3
4
5
6
7
#include <iostream>
int main() {
std::cout << __cplusplus << std::endl;
}

=============
201402
 Comments