bad_function_call Class
잘못 된 함수 호출을 보고합니다.
class bad_function_call
: public std::exception {
};
설명
예외가 throw 되었음을 나타내기 위해 호출 하는 클래스를 설명 operator() 에 있는 function Class 개체는 개체가 비어 있기 때문에 실패 했습니다.
예제
// 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