Condividi tramite


Classe out_of_range

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

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

Note

Il valore restituito da Classe exception è una copia di messaggio.dati.

Esempio

// out_of_range.cpp
// compile with: /EHsc
#include <string>
#include <iostream>

using namespace std;

int main() {
// out_of_range
   try {
      string str( "Micro" );
      string rstr( "soft" );
      str.append( rstr, 5, 3 );
      cout << str << endl;
   }
   catch ( exception &e ) {
      cerr << "Caught: " << e.what( ) << endl;
   };
}

Output

Caught: invalid string position

Requisiti

stdexcept<diIntestazione: >

Spazio dei nomi: std

Vedere anche

Riferimenti

Classe logic_error

Sicurezza dei thread nella libreria standard C++