C++ 异常库 - bad_function_call


描述

这是错误调用引发的异常。

宣言

以下是 std::bad_function_call 的声明。

class bad_function_call;

C++11

class bad_function_call;

参数

没有任何

返回值

没有任何

例外情况

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

例子

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

#include <iostream>
#include <functional>
 
int main() {
   std::function<int()> f = nullptr;
   try {
      f();
   } catch(const std::bad_function_call& e) {
      std::cout << e.what() << '\n';
   }
}

示例输出应该是这样的 -

bad_function_call
异常.htm