POINT.H
上传用户:liubin
上传日期:2022-06-13
资源大小:85k
文件大小:0k
源码类别:

书籍源码

开发平台:

Visual C++

  1. //习题12.1中的point.h头文件
  2. //POINT.H
  3. class Point
  4. {public:
  5.   Point(float=0,float=0);
  6.   void setPoint(float,float);
  7.   float getX() const {return x;}
  8.   float getY() const {return y;}
  9.   friend ostream & operator<<(ostream &,const Point &);
  10.  protected:
  11.   float x,y;
  12. };