C++Point类运算符重载

更新时间:2023-07-14 07:25:14 阅读: 评论:0

C++Point类运算符重载
#include "stdafx.h"
using namespace std;
class Point
{
public:
Point(double x,double y):_x(x),_y(y)
{
}
~Point()
{
}
什么是间接转述句Point& operator ++();
Point operator ++(int);
Point& operator --();
Point operator --(int);临汾牛肉丸子面
friend ostream& operator <<(ostream& out,Point& a);
private:
double _x,_y;
};
Point& Point::operator++()硅石矿
{
马若特
_x++;
_y++;
return *this;
}
Point Point::operator++(int)
直为斩楼兰{
Point old=*this;
++(*this);
return old;
}
Point& Point:: operator --()
读书卡片图片大全
{
_x--;
_y--;
return *this;
}
Point Point::operator --(int)
{
Point old=*this;
--(*this);
return old;
极其的近义词}
ostream& operator<<(ostream& out,Point &a)
{
out<<"("<<a._x<<","<<a._y<<")";
return out;
}
化学会int main()
{
Point a(1,1);
a++;
cout<<a<<endl;
system("Pau");
return 0;
}

本文发布于:2023-07-14 07:25:14,感谢您对本站的认可!

本文链接:https://www.wtabcd.cn/fanwen/fan/89/1080883.html

版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系,我们将在24小时内删除。

标签:牛肉   重载   直为   读书
相关文章
留言与评论(共有 0 条评论)
   
验证码:
推荐文章
排行榜
Copyright ©2019-2022 Comsenz Inc.Powered by © 专利检索| 网站地图