智能指针管理数组

shared_ptr默认是使用delete来释放管理的资源,delete只会调用第一个元素的析构函数

要使用shared_ptr来管理数组,就需要需要自定义删除器

int main(){
    auto Deleter=[](Connection *connection){
        delete[] connection;
    };
    Connection* c1 = new Connection[2]{string("s1"), string("s2")};
    // 新建管理连接Connection的智能指针
    shared_ptr<Connection> sp(c1, Deleter);
}

unique_ptr重载了管理数组的版本,使用方法如下:

int main(){
    Connection* c1 = new Connection[2]{string("c1"), string("c2")};
    // 新建管理连接Connection的智能指针
    unique_ptr<Connection[]> up(c1);
}

unique_ptr使用删除器的格式

unique_ptr<Connection, decltype(deleter)> up(new Connection("unique_ptr"), deleter);

上一篇:线程创建等待及退出


下一篇:const与volatile使用示例