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

书籍源码

开发平台:

Visual C++

  1. #include <iostream>
  2. #include "rect.h"
  3. using namespace std;
  4. Rectangle::Rectangle(int l , int t, int r, int b) {
  5. left = l; top = t;
  6. right = r; bottom = b; 
  7. } // 构造函数,带默认参数,缺省值为全0,在声明中指定
  8. void Rectangle::Assign(int l, int t, int r, int b){
  9. left = l; top = t;
  10. right = r; bottom = b;
  11. }
  12. void Rectangle::Show(){
  13. cout<<"left-top point is ("<<left<<","<<top<<")"<<'n';
  14. cout<<"right-bottom point is ("<<right<<","<<bottom<<")"<<'n';
  15. }