在C++中,可以使用const
关键字来定义常量
#include<iostream>
int main() {
const int my_constant = 42; // 定义一个整数常量并赋值为42
std::cout << "The value of my_constant is: " << my_constant<< std::endl;
return 0;
}
#include<iostream>
int main() {
constexpr int my_constant = 42; // 定义一个编译时常量并赋值为42
std::cout << "The value of my_constant is: " << my_constant<< std::endl;
return 0;
}
#include<iostream>
void print_value(const int& value) {
std::cout << "The value is: "<< value<< std::endl;
}
int main() {
const int my_constant = 42;
print_value(my_constant); // 将常量传递给函数
return 0;
}
注意:在C++中,常量的值在程序运行期间不能被修改。尝试修改常量的值会导致编译错误。