摘要: 测试代码: #include <iostream> using namespace std; class AA { public: AA(size_t count = 1) { _a = new int[count]; cout<<"AA()"<<endl; } ~AA() { cout<<"~AA 阅读全文
posted @ 2020-12-16 17:27 SimbaStar 阅读(80) 评论(0) 推荐(0) 编辑