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
exception.htm
广告