摘要: #include <iostream> #include <memory> using namespace std; class A{ public: A(){ cout << "A" << endl; q = new int(2); } ~A(){ cout << "~A" << endl; de 阅读全文
posted @ 2021-04-29 21:01 米开朗菠萝 阅读(1055) 评论(0) 推荐(0)