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

C#编程

开发平台:

Visual C++

  1. //=====================================
  2. // point.cpp
  3. //=====================================
  4. #include"point.h"
  5. //-------------------------------------
  6. void Point::set(int a, int b){
  7.   x=a, y=b;
  8. }//------------------------------------
  9. Point Point::operator+(const Point& d){
  10.   Point s;
  11.   s.set(x+d.x, y+d.y);
  12.   return s;
  13. }//------------------------------------
  14.