xt9-7-2.cpp
上传用户:liubin
上传日期:2022-06-13
资源大小:85k
文件大小:0k
源码类别:

书籍源码

开发平台:

Visual C++

  1. #include <iostream>
  2. using namespace std;
  3. class Student
  4.  {public:
  5.    Student(int n,float s):num(n),score(s){}
  6.    void change(int n,float s) const  {num=n;score=s;}
  7.    void display() const {cout<<num<<" "<<score<<endl;}
  8.   private:
  9.    mutable int num;
  10.    mutable float score;
  11.  };
  12. int main()
  13. {const Student stud(101,78.5);
  14.  stud.display();
  15.  stud.change(101,80.5);
  16.  stud.display();
  17.  return 0;
  18. }
  19.  
  20.