overflow_error Class
クラスは、算術オーバーフローを報告するためにスローされたすべての例外の基本クラスとして機能します。
class overflow_error : public runtime_error {
public:
explicit overflow_error(const string& message);
explicit overflow_error(const char *message);
};
解説
exception Class によって返される値は、message.データのコピーです。
使用例
// overflow_error.cpp
// compile with: /EHsc /GR
#include <bitset>
#include <iostream>
using namespace std;
int main( )
{
try
{
bitset< 33 > bitset;
bitset[32] = 1;
bitset[0] = 1;
unsigned long x = bitset.to_ulong( );
}
catch ( exception &e )
{
cerr << "Caught " << e.what( ) << endl;
cerr << "Type " << typeid( e ).name( ) << endl;
};
}
必要条件
Header: <stdexcept>
名前空間: std