};voidmy_deleter(Test* t){cout<<"worked"<<endl; }unique_ptr<int>cl1(intp){returnunique_ptr<int>(newint(p)); }unique_ptr<int>cl2(intp){unique_ptr<int>rt(newint(p));returnrt; }voidfl1(unique_ptr<int> p){ *p =100; }intmain(){//test1 不可以拷贝和赋值/* unique_ptr<int> ...
使用unique_ptr,只要unique_ptr指针创建成功,析构函数就一定会被调用,如下: voidfunc() { unique_ptr<int> uptr(newint(10));//maybe throw exception} 2.返回函数内动态申请资源的所有权 unique_ptr<int> func(intvalue) { unique_ptr<int> uptr(newint(value));returnuptr; }intmain() { unique_ptr<...
现在,可以使用unique_ptr对象来操作C指针,而无需手动释放内存。例如,可以通过unique_ptr的get()方法获取C指针的原始值,通过unique_ptr的reset()方法重新指定C指针的值,等等。 代码语言:txt 复制 int* rawPtr = ptr.get(); // 获取C指针的原始值 ptr.reset(new int(24)); // 重新指定C指针的值...
unique_ptr同样可以设置deleter,和shared_ptr不同的是,它需要在模板参数中指定deleter的类型。好在我们有decltype这个利器,不然写起来好麻烦。 1 2 3 4 5 cout<<"test unique_ptr deleter:"<<endl; int*p9=newint(1024); unique_ptr<int,decltype(print_at_delete)*>up6(p9,print_at_delete); unique_ptr...
make_unique提供了更简洁的构建语句。在复杂的表达式中,它也可以保证异常安全。 Example(示例) unique_ptr<Foo> p {new Foo{7}}; // OK: but repetitive auto q = make_unique<Foo>(7); // Better: no repetition of Foo // Not exception-safe: the compiler may interleave the computations of //...
使用std::make_unique:对于大多数情况,你可以使用std::make_unique来创建一个unique_ptr。这个工厂函数可以确保正确地初始化unique_ptr,并在构造时执行所有必要的内存分配和析构。 代码语言:cpp 复制 #include <iostream> #include <memory> int main() { std::unique_ptr<int> ptr = std::make_unique<int>...
二、智能指针的基本用法 智能指针设计的初衷就是可以帮助我们管理堆上申请的内存,可以理解为开发者只需要申请,而释放交给智能指针。 目前C++11 主要支持的智能指针为以下几种 unique_ptr shared_ptr weak_ptr 2.1 unique_ptr 先上代码 的核心特点就如它的名字一样,它拥有对持有对象的唯一所有权。即两个不能同时指...
unique_ptr可以看成是auto_ptr的替代品,用法如下: 1、不支持拷贝构造和赋值运算函数 unique_ptr<Obj> ap(new Obj); unique_ptr one(ap); // 会出错 unique_ptr two= one; // 会出错 1. 2. 3. 2、可以移动构造和移动赋值操作 unique_ptr<Obj> Getobj(); ...
unique_ptr:这是一种独占所有权的智能指针。在任何时候,只能有一个unique_ptr指向一个对象。当这个unique_ptr被销毁时,它所指向的对象也会被删除。 weak_ptr:这是一种不控制对象生命周期的智能指针。它是为了解决shared_ptr可能导致的循环引用问题而设计的。 2. 基于范围的for循环 (Range-based for loop):C++11...
unique_ptr 是一个独享所有权的智能指针,它提供了严格意义上的所有权,包括: 1、拥有它指向的对象 2、无法进行复制构造,无法进行复制赋值操作。即无法使两个unique_ptr指向同一个对象。但是可以进行移动构造和移动赋值操作 3、保存指向某个对象的指针,当它本身被删除释放的时候,会使用给定的删除器释放它指向的对象 ...