Kommentar
Åtkomst till den här sidan kräver auktorisering. Du kan prova att logga in eller ändra kataloger.
Åtkomst till den här sidan kräver auktorisering. Du kan prova att ändra kataloger.
The class serves as the base class for all exceptions thrown to report an argument that is out of its valid range.
class out_of_range : public logic_error {
public:
explicit out_of_range(const string& message);
};
Remarks
The value returned by what is a copy of message.data.
Example
// 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
Requirements
Header: <stdexcept>
Namespace: std
See Also
Reference
Thread Safety in the Standard C++ Library