结构体、运算符重载

末鹿安然 提交于 2019-11-30 05:29:43
#include <bits/stdc++.h>
#define _for(i, a, b) for (int i = (a); i < (b);++i)
#define _rep(i, a, b) for (int i = (a); i <= (b);++i)
using namespace std;
struct Point{
    int x, y;
    Point(int x = 0, int y = 0) : x(x), y(y){};
};
Point operator+(const Point A, const Point B)
{
    return Point(A.x + B.x, A.y + B.y);
}
ostream& operator<<(ostream& out,const Point&p){      //引用out
    out << "(" << p.x << "," << p.y << ")" << endl;
    return out;
}
int n, l;

int main()
{
    Point A, B(2, 3);
    cout << A + B << endl;
    A.x=10;
    cout << A + B << endl;
    return 0;
}
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!