摘要: #浅拷贝与深拷贝 //浅拷贝与深拷贝 //#include using namespace std; // class Person { public: Person() { cout << "默认构造函数" << endl; } Person(const Person& p) { m_Age = 阅读全文
posted @ 2023-04-21 00:54 .Shawn 阅读(19) 评论(0) 推荐(0)