bad_function_call 類別
報告錯誤的函式呼叫。
class bad_function_call
: public std::exception {
};
備註
因為物件是空的,描述例外狀況的類別表示呼叫到失敗的函式物件的 operator() 。
範例
// std_tr1__functional__bad_function_call.cpp
// compile with: /EHsc
#include <functional>
#include <iostream>
typedef double (Fd)(double);
typedef std::function<Fd> Myfunc;
double square(double x)
{
return (x * x);
}
int main()
{
Myfunc fd0(square);
std::cout << "x * x == " << fd0(3) << std::endl;
try
{
Myfunc fd1;
std::cout << fd1(3) << std::endl;
}
catch (const std::bad_function_call&)
{
std::cout << "bad function call" << std::endl;
}
catch (...)
{
std::cout << "unknown exception" << std::endl;
}
return (0);
}
需求
標題: <functional>
命名空間: std