C++ 关键字总结 1.const const是 constant 的缩写,本意是不变的、不易改变的意思。 在C++中用来修饰内置类型变量,自定义对象,成员函数,返回值,函数参数 使用如下: //修饰普通类型变量 const int a =7; int b=a; //true a=8