问题(C++):void f() const { cout << i++ << endl; }中const的作用?
class Obj {
static int i, j;
public:
void f() const { cout << i++ << endl; }
void g() const { cout << j++ << endl; }
};
class Obj {
static int i, j;
public:
void f() const { cout << i++ << endl; }
void g() const { cout << j++ << endl; }
};
禁止函数修改类的成员变量
你这代码编译会报错的,f和g函数内部不可以修改成员变量i和j的值
回复到这个程度还是不足以采纳么......