C++ 异常库 - bad_weak_ptr


描述

这是一个糟糕的弱指针。

宣言

以下是 std::bad_weak_ptr 的声明。

class bad_weak_ptr: public exception;

C++11

class bad_weak_ptr: public exception;

参数

没有任何

返回值

没有任何

例外情况

无抛出保证- 没有成员抛出异常。

例子

在下面的 std::bad_typeid 示例中。

#include <memory>
#include <iostream>
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';
   }
}

示例输出应该是这样的 -

bad_weak_ptr
异常.htm