所以我有一个经常需要在课外调用的变量,有人告诉我应该这样做:
class Foo{
public:
//stuff
Type getVariable();
private:
Type Variable;
//stuff
}
但为什么我不能只使用:
class Foo{
public:
//stuff
const Type variable
private:
//stuff
}