C++ 参考手册
- C++11
- C++14
- C++17
- C++20
- C++ 编译器支持情况表
- 独立与宿主实现
- C++ 语言
- C++ 关键词
- 预处理器
- C++ 标准库头文件
- 具名要求
- 功能特性测试 (C++20)
- 工具库
- 类型支持(基本类型、RTTI、类型特性)
- 概念库 (C++20)
- 错误处理
- 动态内存管理
- std::unique_ptr
- std::make_unique, std::make_unique_for_overwrite
- std::hash <std::unique_ptr>
- std::unique_ptr<T,Deleter>::operator<<
- std::swap(std::unique_ptr)
- std::unique_ptr<T,Deleter>::operator*
- std::unique_ptr<T,Deleter>::operator[]
- operator==,!=,<,<=,>,>=,<=>(std::unique_ptr)
- std::unique_ptr<T,Deleter>::get
- std::unique_ptr<T,Deleter>::get_deleter
- std::unique_ptr<T,Deleter>::operator bool
- std::unique_ptr<T,Deleter>::reset
- std::unique_ptr<T,Deleter>::swap
- std::unique_ptr<T,Deleter>::operator=
- std::unique_ptr<T,Deleter>::release
- std::unique_ptr<T,Deleter>::unique_ptr
- std::unique_ptr<T,Deleter>::~unique_ptr
- std::addressof
- std::allocator_traits
- std::default_delete
- std::allocator_arg_t
- std::allocator_arg
- std::weak_ptr
- std::enable_shared_from_this
- std::bad_weak_ptr
- std::scoped_allocator_adaptor
- std::auto_ptr
- std::destroy_at
- std::destroy
- std::destroy_n
- std::uninitialized_move
- std::uninitialized_value_construct
- std::owner_less
- std::shared_ptr
- std::to_address
- std::assume_aligned
- std::make_obj_using_allocator
- C 内存管理库
- 低层内存管理
- std::pmr::memory_resource
- std::allocator
- std::pointer_traits
- std::uses_allocator
- std::uses_allocator_construction_args
- std::uninitialized_construct_using_allocator
- std::pmr::polymorphic_allocator
- std::pmr::get_default_resource
- std::pmr::set_default_resource
- std::pmr::new_delete_resource
- std::pmr::null_memory_resource
- std::pmr::synchronized_pool_resource
- std::pmr::unsynchronized_pool_resource
- std::pmr::monotonic_buffer_resource
- std::pmr::pool_options
- std::raw_storage_iterator
- std::get_temporary_buffer
- std::return_temporary_buffer
- std::uninitialized_copy
- std::uninitialized_fill
- std::uninitialized_default_construct
- std::uninitialized_copy_n
- std::uninitialized_fill_n
- std::uninitialized_move_n
- std::uninitialized_default_construct_n
- std::uninitialized_value_construct_n
- std::construct_at
- std::align
- 注释
- 日期和时间工具
- 字符串库
- 容器库
- 迭代器库
- 范围库 (C++20)
- 算法库
- 数值库
- 输入/输出库
- 文件系统库
- 本地化库
- 正则表达式库
- 原子操作库
- 线程支持库
- 实验性 C++ 特性
- 有用的资源
- 索引
- std 符号索引
- 协程支持 (C++20)
- C++ 关键词
位置:首页 > C++ 参考手册 >动态内存管理 >std::unique_ptr > std::unique_ptr<T,Deleter>::reset
std::unique_ptr<T,Deleter>::reset
初等模板 unique_ptr<T> 的成员 |
||
void reset( pointer ptr = pointer() ) noexcept; |
(1) | |
特化 unique_ptr<T[]> 的成员 |
||
void reset( pointer ptr = pointer() ) noexcept; |
(2) | (C++17 前) |
(3) | ||
template< class U > void reset( U ) = delete; |
(C++17 前) | |
template< class U > void reset( U ) noexcept; |
(C++17 起) | |
(4) | ||
void reset( std::nullptr_t p ) noexcept; |
(C++17 前) | |
void reset( std::nullptr_t p = nullptr ) noexcept; |
(C++17 起) | |
替换被管理对象。
1) 给定指向
*this
所管理对象的指针 current_ptr
,进行下列行动,以此顺序:
- 保存当前指针的副本 old_ptr = current_ptr
- 以参数重写当前指针 current_ptr = ptr
- 若旧指针非空,则删除先前管理的对象 if(old_ptr != nullptr) get_deleter()(old_ptr) 。
2) 表现同初等模板的 reset 成员。
3) 动态数组的特化 std::unique_ptr<T[]> 中,提供此模板成员以阻止以指向导出类的指针使用 reset() (这会对数组导致未定义行为)。
|
(C++17 前) |
3) 表现同初等模板的 reset 成员,除了它仅若满足下列任意条件才参与重载决议
4) 等价于 reset(pointer()) 。
|
(C++17 起) |
参数
ptr | - | 指向要管理的新对象的指针 |
返回值
(无)
注意
为在提供新删除器时替换被管理对象,可用移动赋值运算符。
不进行自 reset 测试,即 ptr
是否指向已为 *this
管理的对象,除非作为编译器扩展,或调试断言提供。注意如 p.reset(p.release()) 的代码不涉及自重置,只有类似 p.reset(p.get()) 的代码会。
示例
运行此代码
#include <iostream> #include <memory> struct Foo { Foo() { std::cout << "Foo...\n"; } ~Foo() { std::cout << "~Foo...\n"; } }; struct D { void operator() (Foo* p) { std::cout << "Calling delete for Foo object... \n"; delete p; } }; int main() { std::cout << "Creating new Foo...\n"; std::unique_ptr<Foo, D> up(new Foo(), D()); // up 占有 Foo 指针(删除器 D ) std::cout << "Replace owned Foo with a new Foo...\n"; up.reset(new Foo()); // 调用旧者的删除器 std::cout << "Release and delete the owned Foo...\n"; up.reset(nullptr); }
输出:
Creating new Foo... Foo... Replace owned Foo with a new Foo... Foo... Calling delete for Foo object... ~Foo... Release and delete the owned Foo... Calling delete for Foo object... ~Foo...
参阅
返回一个指向被管理对象的指针,并释放所有权 (公开成员函数) |