underflow_error Class
클래스 언더플로가 산술 위하여 throw 된 모든 예외에 대 한 기본 클래스 역할을 합니다.
class underflow_error : public runtime_error {
public:
explicit underflow_error(const string& message);
explicit underflow_error(const char *message);
};
설명
예제
// underflow_error.cpp
// compile with: /EHsc /GR
#include <iostream>
using namespace std;
int main( )
{
try
{
throw underflow_error( "The number's a bit small, captain!" );
}
catch ( exception &e ) {
cerr << "Caught: " << e.what( ) << endl;
cerr << "Type: " << typeid( e ).name( ) << endl;
};
}
요구 사항
헤더: <stdexcept>
네임 스페이스: std