11
0
2
668
1
一、const 修饰普通类型的变量 例:const int a = 7; a被定义为一个常量,不能再被赋值。 二、const 修饰指针变量 1.const修饰指针指向的内容,...