标签:1.5 const class 标准库 地址 变量 line c++学习 c++
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类型别名
标签:1.5 const class 标准库 地址 变量 line c++学习 c++
原文地址:http://www.cnblogs.com/mokero/p/6645465.html