rect.h
上传用户:wuzhousb
上传日期:2022-07-12
资源大小:380k
文件大小:0k
源码类别:

书籍源码

开发平台:

Visual C++

  1. class Rectangle {
  2. int left, top ;
  3. int right, bottom;
  4. public:
  5. Rectangle(int l=0, int t=0, int r=0, int b=0);
  6. ~Rectangle(){};  //析构函数,在此函数体为空
  7. void Assign(int l, int t, int r, int b);
  8. void SetLeft(int t){ left = t;}  // 以下四个函数皆为内联成员函数
  9. void SetRight( int t ){ right = t;}
  10. void SetTop( int t ){ top = t;}
  11. void SetBottom( int t ){ bottom = t;}
  12. void Show();
  13. };