Classe overflow_error

La classe funge da classe di base per tutte le eccezioni generate per segnalare un overflow aritmetico.

Sintassi

class overflow_error : public runtime_error {
public:
    explicit overflow_error(const string& message);

    explicit overflow_error(const char *message);

};

Osservazioni:

Il valore restituito da what() è una copia di message.data(). Per altre informazioni, vedere what e data.

Esempio

// overflow_error.cpp
// compile with: /EHsc
#include <bitset>
#include <exception>
#include <iostream>
#include <typeinfo>
using namespace std;

int main()
{
   try
   {
      bitset<33> b;
      b[32] = 1;
      b[0] = 1;
      unsigned long x = b.to_ulong();
   }
   catch (const exception& e)
   {
      cerr << "Caught: " << e.what() << endl;
      cerr << "Type: " << typeid(e).name() << endl;
   }
}
/* Output:
Caught: bitset overflow
Type: class std::overflow_error
*/

Requisiti

Header:<stdexcept>

Spazio dei nomi: std

Vedi anche

Classe runtime_error
Thread Safety in the C++ Standard Library (Sicurezza dei thread nella libreria standard C++)