POINT.H
上传用户:chaiyuqiu
上传日期:2022-08-03
资源大小:27k
文件大小:0k
源码类别:

数据结构

开发平台:

C/C++

  1. #ifndef POINT_H
  2. #define POINT_H
  3. class Point{
  4. public:
  5.     Point( int,int );
  6.     Point( Point & );
  7.     ~Point();
  8.     int get_x();
  9.     int get_x();
  10.     Point operator + (Point);
  11.     Point operator + ( int );
  12.     Point operator * ( int );
  13.     int operator > (Point);
  14.     int operator < (Point);
  15.     int operator = (Point & );
  16.   private:
  17.     int x;
  18.     int y;
  19.     friend istream& operator >> ( istream &,Point &);
  20.     friend ostream& operator << ( istream &,Point &);
  21. };
  22. #endif