overflow_error Class
Sınıf aritmetik taşma bildirmek için oluşan tüm özel durumları için temel sınıf görevi görür.
class overflow_error : public runtime_error {
public:
explicit overflow_error(const string& message);
explicit overflow_error(const char *message);
};
Notlar
Tarafından döndürülen değeri exception Class 'in ileti.veri.
Örnek
// 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;
};
}
Gereksinimler
Başlık: <stdexcept>
Namespace: std