摘要: #include <iostream> class Person { public: int age_get() { return m_age; } void age_set(int age) { m_age = age; } Person operator+(Person &person) { P 阅读全文
posted @ 2022-06-10 21:38 thomas_blog 阅读(20) 评论(0) 推荐(0) 编辑