第六周实验报告(1)

来源:互联网 发布:bim软件有哪些 编辑:程序博客网 时间:2024/05/16 16:55

第一种修改方法

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");  }  




原创粉丝点击