摘要: 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 + 阅读全文
posted @ 2021-01-04 19:19 模糊计算士 阅读(686) 评论(0) 推荐(0) 编辑