1.标准库函数 begin end
2.const
const int i = 5;
extern const int i = 5; //作用于所有文件
3. 类型声明
1 typedef int test; //test是int的别名 2 typedef test otest,*p; //otest是test的别名,p是int*的别名
别名申明
1 using test=int; //test是int类型别名
原文:http://www.cnblogs.com/mokero/p/6645465.html