标签:
1 const
2 mutable
1 const
类的数据如果是const属性,需要初始化,否则报错
error C2789: “fush::d”: 必须初始化常量限定类型的对象
1 struct fushu 2 { 3 const int d;//error C2789: “fush::d”: 必须初始化常量限定类型的对象 4 };
类的函数如是是const属性,则内部不能修改数据,否则报错
error C3490: 由于正在通过常量对象访问“a”,因此无法对其进行修改
1 struct fushu 2 { 3 int a; 4 mutable int b; 5 void showabc() const 6 { 7 this->a = 10;//error C3490: 由于正在通过常量对象访问“a”,因此无法对其进行修改 8 this->b = 10; 9 } 10 };
2 mutable
mutable 可以用来指出,即使成员函数或者类变量为const,其某个成员也可以被修改。
在c++的类中, 如果一个成员函数被const 修饰,那么它将无法修改其成员变量的,但是如果这个成员变量是被mutable修饰的话,则可以修改。
e有mutable,即使成员函数为const,e仍然可以被修改
1 mutable int e = 9; 2 3 void showabc() const 4 { 5 this->e = 10; 6 std::cout << this->a << this->b << this->c << std::endl; 7 }
标签:
原文地址:http://www.cnblogs.com/denggelin/p/5617732.html