在C++中,const关键字用于声明常量。它可以用于变量、函数参数和函数返回类型上,具体用法如下:
const int num = 10;
void printString(const std::string& str) {
// 无法修改str的值
std::cout << str << std::endl;
}
const int getValue() {
return 10;
}
这样的函数在使用时,返回值不能被修改,例如:
int num = getValue(); // 正确
num = 20; // 错误,无法修改常量
总结:const关键字可以用于声明常量变量、函数参数和函数返回类型,用于限制不可修改的值,提高程序的健壮性和可读性。