在C++中,const
关键字用于定义常量或指定函数参数、成员函数、成员变量等为常量,表示其值在程序的执行过程中不能被修改。
//1. 定义常量:
const int MAX_SIZE = 100;//2. 常量指针:
int x = 10;
const int* ptr = &x; // 指向整型常量的指针
int y = 20;
ptr = &y; // 合法,可以修改指针本身
*ptr = 30; // 非法,不能通过 ptr 修改所指向的值//3. 指向常量的指针:
int z = 30;
int* const ptr = &z; // 常量指针,指向整型的常量
*ptr = 40; // 合法,可以通过 ptr 修改所指向的值
ptr = &y; // 非法,不能修改指针本身的值//4. 常量引用:
int z = 30;
const int& ref = z;//5. 常量成员函数:
class MyClass {
public:void print() const {std::cout << "This is a constant member function" << std::endl;}
};//6. 常量成员变量:
class MyClass {
public:const int value = 100;
};
注:常量指针(pointer to constant)和指向常量的指针(constant pointer)虽然听起来很相似,但在 C++ 中有着不同的含义和用法。
- 常量指针是指其所指向的值为常量,不能通过该指针来修改其所指向的值,但指针本身是可以修改的。
- 指向常量的指针是指其所指向的地址是常量,不能通过修改指针来改变它所指向的地址,但可以通过该指针来修改其所指向的值。