point.h
资源名称:c.rar [点击查看]
上传用户:puke2000
上传日期:2022-07-25
资源大小:912k
文件大小:1k
源码类别:

C#编程

开发平台:

Visual C++

  1. //=====================================
  2. // point.h
  3. //=====================================
  4. #ifndef HEADER_POINT
  5. #define HEADER_POINT
  6. #include<iostream>
  7. using namespace std;
  8. //-------------------------------------
  9. class Point{
  10.   int x, y;
  11. public:
  12.   void set(int a, int b);
  13.   Point operator+(const Point& d);
  14.   friend ostream& operator<<(ostream& o, const Point& d);
  15. };//===================================
  16. inline ostream& operator<<(ostream& o, const Point& d){
  17.   return o<<'('<<d.x<<','<<d.y<<')'<<'n';
  18. }//------------------------------------
  19. #endif  // HEADER_POINT
  20.