CHAPTER1-7.cpp
上传用户:fjc899
上传日期:2007-07-03
资源大小:187k
文件大小:0k
源码类别:

STL

开发平台:

C/C++

  1. //文件名:CHAPTER1-7.cpp
  2. #include <iostream.h>
  3. class R
  4. {
  5. public:
  6. R(int r1, int r2) { R1=r1; R2=r2;  }
  7. void print();
  8. void print() const;
  9. private:
  10. int R1, R2;
  11. };
  12. void R::print() {cout<<R1<<","<<R2<<endl;}
  13. void R::print() const {cout<<R1<<";"<<R2<<endl;}
  14. void main()
  15. {
  16. R a(5, 4);
  17. a.print();
  18. const R b(20, 52);
  19. b.print();
  20. }