std::bad_weak_ptr
来自 cppreference.com
在头文件 <memory> 中定义 |
||
class bad_weak_ptr; |
(自 C++11) | |
std::bad_weak_ptr
是当 std::weak_ptr 指向已删除的对象时,通过接受 std::weak_ptr 作为参数的 std::shared_ptr 构造函数作为异常抛出的对象的类型。
继承图
内容 |
[编辑] 成员函数
(构造函数) |
构造一个新的 bad_weak_ptr 对象(公共成员函数) |
operator= |
替换 bad_weak_ptr 对象(公共成员函数) |
what |
返回解释字符串 (公共成员函数) |
std::bad_weak_ptr::bad_weak_ptr
bad_weak_ptr() noexcept; |
(1) | (自 C++11) |
bad_weak_ptr( const bad_weak_ptr& other ) noexcept; |
(2) | (自 C++11) |
构造一个新的 bad_weak_ptr
对象,包含一个实现定义的空终止字节字符串,可以通过 what() 访问。
1) 默认构造函数。
参数
other | - | 要复制的另一个异常对象 |
std::bad_weak_ptr::operator=
bad_weak_ptr& operator=( const bad_weak_ptr& other ) noexcept; |
(自 C++11) | |
用 other 的内容赋值。如果 *this 和 other 都有动态类型 std::bad_weak_ptr
,那么赋值后 std::strcmp(what(), other.what()) == 0.
参数
other | - | 要赋值的另一个异常对象 |
返回值
*this
std::bad_weak_ptr::what
virtual const char* what() const noexcept; |
(自 C++11) | |
返回解释字符串。
参数
(无)
返回值
指向包含解释信息的空终止字符串的指针。该字符串适合转换为 std::wstring 并显示为 std::wstring。该指针保证至少在获取该指针的异常对象被销毁或在异常对象上调用非 const 成员函数(例如,复制赋值运算符)之前有效。
注释
实现可以重写what()
,但不是必须的。
继承自 std::exception
成员函数
[虚拟] |
销毁异常对象 ( std::exception 的虚拟公有成员函数) |
[虚拟] |
返回一个解释性字符串 ( std::exception 的虚拟公有成员函数) |
[编辑] 示例
运行这段代码
#include <iostream> #include <memory> int main() { std::shared_ptr<int> p1(new int(42)); std::weak_ptr<int> wp(p1); p1.reset(); try { std::shared_ptr<int> p2(wp); } catch (const std::bad_weak_ptr& e) { std::cout << e.what() << '\n'; } }
可能的输出
std::bad_weak_ptr
[编辑] 缺陷报告
以下行为更改缺陷报告被追溯应用于先前发布的 C++ 标准。
DR | 应用于 | 已发布的行为 | 正确的行为 |
---|---|---|---|
LWG 2376 | C++11 | 在默认构造的 bad_weak_ptr 上调用 what 要求返回 "bad_weak_ptr" |
返回值是实现定义的 |
[编辑] 另请参阅
(C++11) |
具有共享对象所有权语义的智能指针 (类模板) |
(C++11) |
对由 std::shared_ptr 管理的对象的弱引用 (类模板) |