COUNT.CPP
上传用户:wszmarenbt
上传日期:2013-04-26
资源大小:2552k
文件大小:0k
源码类别:

Windows编程

开发平台:

Visual C++

  1. //IMPLEMENTATION OF COUNTER CLASS
  2. //FILE COUNT.CPP
  3. #define MAX 65535
  4. #include "Count.h"
  5. void COUNTER::operator++()
  6. {
  7. if (NUMBER<MAX)
  8. NUMBER+=10;
  9. }
  10. void COUNTER::operator--()
  11. {
  12. if (NUMBER>0)
  13. NUMBER-=10;
  14. }
  15. void COUNTER::DISPLAY()
  16. {
  17. printf("n THE TEST COUNTER = %d",NUMBER);
  18. }