runtime_error Class
仅在程序执行时,选件类用作基类。对于所有异常引发报告软件才能确定可检测到的错误。
class runtime_error : public exception {
public:
explicit runtime_error(const string& message);
explicit runtime_error(const char *message);
};
备注
exception Class 返回的值是 消息.数据的副本。
示例
// runtime_error.cpp
// compile with: /EHsc /GR
#include <iostream>
using namespace std;
int main( )
{
// runtime_error
try
{
locale loc( "test" );
}
catch ( exception &e )
{
cerr << "Caught " << e.what( ) << endl;
cerr << "Type " << typeid( e ).name( ) << endl;
};
}
要求
Header: <stdexcept>
命名空间: std