std::bad_function_call
来自cppreference.com
< cpp | utility | functional
该页由英文版wiki使用Google Translate机器翻译而来。
该翻译可能存在错误或用词不当。鼠标停留在文本上可以看到原版本。你可以帮助我们修正错误或改进翻译。参见说明请点击这里. |
在头文件 <functional> 中定义
|
||
class bad_function_call; |
(C++11 起) | |
std::bad_function_call
is the type of the exception thrown by std::function::operator()
if the function wrapper has no target.
目录 |
[编辑] 成员函数
(constructor) |
bad_function_call() (公共成员函数) |
std::bad_function_call::bad_function_call()
bad_function_call(); |
||
Constructs a new instance of std::bad_function_call
.
Parameters
(none)
Exceptions
Inherited from std::exception
Member functions
[虚]</div></div>
|
析构该异常对象 ( std::exception 的公有虚成员函数)
|
[虚]</div></div>
|
返回一个说明字符串 ( std::exception 的公有虚成员函数)
|
</div>
[编辑] 示例
#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
[编辑] 另请参阅
(C++11) |
包装任何类型的可调用对象与指定的函数调用签名 原文: wraps callable object of any type with specified function call signature (类模板) |