out_of_range Class
Die Klasse dient als Basisklasse für alle Ausnahmen, die ausgelöst werden, und melden ein Argument, das aus dem gültigen Bereichs liegt.
class out_of_range : public logic_error {
public:
explicit out_of_range(const string& message);
explicit out_of_range(const char *message);
};
Hinweise
Der Wert, der von exception Class zurückgegeben wird, wird eine Kopie von message.Daten.
Beispiel
// 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
Anforderungen
Header: <stdexcept>
Namespace: std