7_68.cpp
上传用户:zipjojo
上传日期:2009-07-20
资源大小:70k
文件大小:1k
源码类别:

文章/文档

开发平台:

C/C++

  1. #include<iostream.h>
  2. class sample
  3. {
  4. private:
  5. const int &r;
  6. const int x;
  7. static const int y;
  8. int z;
  9. public:
  10. sample(int i,int j);
  11. void disp()
  12. {
  13. cout<<"x="<<x<<",y="<<y<<",r="<<r<<",z="<<z<<endl;
  14. z++;
  15. cout<<"x="<<x<<",y="<<y<<",r="<<r<<",z="<<z<<endl;
  16. cout<<"x+y+z+r="<<gettotal()<<endl;  //调用成员函数gettotal()
  17. cout<<"一般成员函数可更新对象的数据成员!"<<endl;
  18. }
  19. int gettotal()  {return x+y+z+r;}
  20. void disp() const;
  21. };
  22. sample::sample(int i,int j):x(i),r(x)
  23. {
  24. z=j;
  25. }
  26. void sample::disp()const
  27. {
  28. //z++;  //error C2166: l-value specifies const object
  29. cout<<"x="<<x<<",y="<<y<<",r="<<r<<",z="<<z<<endl;
  30.    // cout<<"x+y+z+r="<<gettotal()<<endl;
  31.  //error C2662: 'gettotal' : cannot convert 'this' pointer from 'const class sample' to 'class //sample &'  Conversion loses qualifiers
  32.     cout<<"常成员函数不可更新对象的数据成员!"<<endl;
  33. cout<<"常成员函数也不能调用该类中没有用const修饰的成员函数!"<<endl;
  34. }
  35. const int sample::y=10;
  36. void main()
  37. {
  38. sample a(1,2);
  39. a.disp();
  40. cout<<endl<<"常对象只能调用它的常成员函数,不能调用其它成员函数!"<<endl;
  41. const sample b(3,4);
  42. b.disp();
  43. cout<<"x+y+z+r="<<a.gettotal()<<endl;
  44. // cout<<"x+y+z+r="<<b.gettotal()<<endl;
  45. // error C2662: 'gettotal' : cannot convert 'this' pointer from 'const class sample' to 'class //sample &'     Conversion loses qualifiers            
  46. }