bad_function_call Class

错误报告函数调用。

class bad_function_call
    : public std::exception {
    };

备注

因为对象是空的,介绍异常时引发的选件类指示调用到失败的 function Class 对象的 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