摘要: #include <bits/stdc++.h> using namespace std; //智能指针 int main(){ //unique_ptr,保证同一时间内只有一个智能指针可以指向该对象 unique_ptr<string> p3(new string("auto")); unique 阅读全文
posted @ 2021-07-16 21:37 zmachine 阅读(43) 评论(0) 推荐(0) 编辑