std::bad_function_call
来自 cppreference.com
< cpp | utility | functional
在头文件 <functional> 中定义 |
||
class bad_function_call; |
(自 C++11) | |
std::bad_function_call
是由 std::function::operator() 抛出的异常的类型,如果函数包装器没有目标。
继承图
内容 |
[编辑] 成员函数
(构造函数) |
构造一个新的 bad_function_call 对象(公有成员函数) |
operator= |
替换 bad_function_call 对象(公有成员函数) |
what |
返回解释性字符串 (公有成员函数) |
std::bad_function_call::bad_function_call
bad_function_call() noexcept; |
(1) | (自 C++11) |
bad_function_call( const bad_function_call& other ) noexcept; |
(2) | (自 C++11) |
使用一个实现定义的空终止字节字符串构造一个新的 bad_function_call
对象,该字符串可以通过 what() 访问。
1) 默认构造函数。
2) 复制构造函数。如果 *this 和 other 都具有动态类型
std::bad_function_call
,那么 std::strcmp(what(), other.what()) == 0.参数
other | - | 要复制的另一个异常对象 |
std::bad_function_call::operator=
bad_function_call& operator=( const bad_function_call& other ) noexcept; |
(自 C++11) | |
将内容分配给 other 的内容。如果 *this 和 other 都具有动态类型 std::bad_function_call
,那么 std::strcmp(what(), other.what()) == 0 在分配后。
参数
other | - | 要分配的另一个异常对象 |
返回值
*this
std::bad_function_call::what
virtual const char* what() const noexcept; |
(自 C++11) | |
返回解释性字符串。
参数
(无)
返回值
指向包含解释信息的空终止字符串的指针。该字符串适合转换为 std::wstring 并显示为 std::wstring。该指针保证至少在获取它的异常对象被销毁之前或在异常对象上的非 const 成员函数(例如复制赋值运算符)被调用之前有效。
说明
实现可以覆盖 what()
,但不要求。
继承自 std::exception
成员函数
[虚拟] |
销毁异常对象 ( std::exception 的虚拟公共成员函数) |
[虚拟] |
返回一个解释性字符串 ( std::exception 的虚拟公共成员函数) |
[编辑] 示例
运行此代码
#include <functional> #include <iostream> int main() { std::function<int()> f = nullptr; try { f(); } catch (const std::bad_function_call& e) { std::cout << e.what() << '\n'; } }
可能的输出
bad function call
[编辑] 参见
(C++11) |
任何可复制的可调用对象的复制包装器 (类模板) |