//const的作用
//1.被const修饰的变量就会变成只读的,也就是变成了常量
//2.const只修饰右边的内容
1.只读
2.只修饰右边的内容
int const *a1; //a1是变量 *a1是常量 const int * const a2; //a2是常量 *a2也是常量
时间: 2024-10-11 11:09:55
//const的作用
//1.被const修饰的变量就会变成只读的,也就是变成了常量
//2.const只修饰右边的内容
1.只读
2.只修饰右边的内容
int const *a1; //a1是变量 *a1是常量 const int * const a2; //a2是常量 *a2也是常量