C++程序设计教程(第二版)源代码 钱能编著

源代码在线查看: point.cpp

软件大小: 165 K
上传用户: fq335288450
关键词: 程序设计 教程 源代码
下载地址: 免注册下载 普通下载 VIP

相关代码

				//=====================================
				// point.cpp
				//=====================================
				#include"point.h"
				//-------------------------------------
				void Point::set(int a, int b){
				  x=a, y=b;
				}//------------------------------------
				Point Point::operator+(const Point& d){
				  Point s;
				  s.set(x+d.x, y+d.y);
				  return s;
				}//------------------------------------
				
				 			

相关资源