第一种修改方法
class C
{
private:
int x;
public:
C(int x)
{
this->x= x;
}
int getX()
{
return x;
}
};
void main()
{
C c(5); //去掉const
cout<<c.getX();
system("pause");
}
第二种修改方法
class C
{private:
int x;
public:
C(int x)
{
this->x= x;
}
int getX() const
{
return x;
} //加上const,成为常成员函数
};
void main()
{
const C c(5);
cout<<c.getX();
system("pause");
}