overflow_error Class
Klasa służy jako klasa podstawowa dla wszystkich wyjątki generowane sprawozdania Przepełnienie arytmetyczne.
class overflow_error : public runtime_error {
public:
explicit overflow_error(const string& message);
explicit overflow_error(const char *message);
};
Uwagi
Wartość zwracana przez exception Class kopię komunikat.dane.
Przykład
// 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;
};
}
Wymagania
Nagłówek: <stdexcept>
Obszar nazw: std