摘要: class A { public: int m_a; A() : m_a(0) { std::cout << "A()" << std::endl; } A(const A& other) : m_a(other.m_a) { std::cout << "A(const A&)" << std::e 阅读全文
posted @ 2022-01-21 20:43 SummerMingQAQ 阅读(29) 评论(0) 推荐(0) 编辑