C++11在标准库的<memory>头文件中定义了三种类型的智能指针。1、unique_ptr 一个unique_ptr拥有它指向的对象的独占所有权,并且会在指针超出范围时销毁该对象。unique_ptr明确地阻止复制其包含的指针。不过可以使用std::move函数必须用于将包含的指针的所有权转移给另一个unique_ptr。示例代码 2、shared_ptr 引用计数...
unique_ptr 用于取代 auto_ptr auto_ptr 被c++11 弃用,原因是缺乏语言特性如 “针对构造和赋值” 的 std::move 语义,以及其他瑕疵。 auto_ptr 与 unique_ptr 比较 auto_ptr 可以赋值拷贝,复制拷贝后所有权转移;unqiue_ptr 无拷贝赋值语义,但实现了move 语义; auto_ptr 对象不能管理数组(析构调用 delete),un...
}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> p1(new int(11)); //unique_ptr<int> p2(p1);//N...
包含memory头文件:要使用unique_ptr或shared_ptr,请确保包含<memory>头文件。 代码语言:cpp 复制 #include <iostream> #include <memory> int main() { std::unique_ptr<int> ptr = std::make_unique<int>(42); std::cout << "Value: " << *ptr << std::endl; return 0; } 使用std::move和std...
unique_ptr使用场景: 1.为动态申请的资源提供异常安全保证 传统情况,可能会因为异常而没有走到delete部分,如下: voidfunc() {int*p =newint(10);//maybe throw exceptionif(NULL !=p) {deletep; p=NULL; } } 使用unique_ptr,只要unique_ptr指针创建成功,析构函数就一定会被调用,如下: ...
unique_ptr shared_ptr weak_ptr 它们都在内存头文件中声明。 文章来源丨极客(geeksforGeeks) auto_ptr 从C ++ 11开始不推荐使用此类模板。unique_ptr是一种具有类似功能但具有改进的安全性的新功能。 auto_ptr是一个智能指针,用于管理通过新表达式获得的对象,并在销毁auto_ptr本身时删除该对象。
unique_ptr weak_ptr auto_ptr(被 C++11 弃用) Class shared_ptr 实现共享式拥有(shared ownership)概念。多个智能指针指向相同对象,该对象和其相关资源会在 “最后一个 reference 被销毁” 时被释放。为了在结构较复杂的情景中执行上述工作,标准库提供 weak_ptr、bad_weak_ptr 和 enable_shared_from_this 等辅...
make_unique gives a more concise statement of the construction. It also ensures exception safety in complex expressions. make_unique提供了更简洁的构建语句。在复杂的表达式中,它也可以保证异常安全。 Example(示例) unique_ptr<Foo> p {new Foo{7}}; // OK: but repetitive ...
头文件:#include <memory>C++ 98std::auto_ptr<std::string> ps (new std::string(str));C++ 11shared_ptr unique_ptr weak_ptr auto_ptr(被 C++11 弃用)Class shared_ptr 实现共享式拥有(shared ownership)概念。多个智能指针指向相同对象,该对象和其相关资源会在 “最后一个 reference 被销毁” 时被...
}; std::unique_ptr<char, void(*)(void*)> t_copy { strdup(t), std::free }; std::cout << t_copy.get() << " <- this is the copy!" <<std::endl; } 假设它是有道理的,是否可以对非指针使用类似的模式?例如对于 POSIX 的函数 open 返回一个 int? 原文由 Paolo.Bolzoni 发布,翻译...