runtime_error 類別
只有在程式執行時,類別會針對所有例外狀況的基底類別報告資料假設可偵測到的錯誤。
class runtime_error : public exception {
public:
explicit runtime_error(const string& message);
explicit runtime_error(const char *message);
};
備註
exception 類別 傳回的值是 message.資料複本。
範例
// 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