Condividi tramite


Classe out_of_range

La classe funge da classe di base per tutte le eccezioni generate per segnalare un argomento che è esterno all'intervallo valido.

Sintassi

class out_of_range : public logic_error {
public:
    explicit out_of_range(const string& message);

    explicit out_of_range(const char *message);

};

Osservazioni:

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

Esempio

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

int main()
{
   try
   {
      string str("Micro");
      string rstr("soft");
      str.append(rstr, 5, 3);
      cout << str << endl;
   }
   catch (const exception& e)
   {
      cerr << "Caught: " << e.what() << endl;
      cerr << "Type: " << typeid(e).name() << endl;
   }
}
/* Output:
Caught: invalid string position
Type: class std::out_of_range
*/

Requisiti

Header:<stdexcept>

Spazio dei nomi: std

Vedi anche

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