摘要: 实现operator=时的常用技巧 class Point{ private: int x; int y; public: Point(const Point& p):x{p.x}, y{p.y}{} }; class Rectangle{ private: Point *point; public 阅读全文
posted @ 2022-05-04 15:58 woder 阅读(240) 评论(0) 推荐(0) 编辑