out_of_range Class
클래스 유효한 범위를 벗어난 인수를 위하여 throw 한 모든 예외에 대 한 기본 클래스 역할을 합니다.
class out_of_range : public logic_error {
public:
explicit out_of_range(const string& message);
explicit out_of_range(const char *message);
};
설명
반환 값 exception Class 의 복사본 인 메시지.데이터.
예제
// 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
요구 사항
헤더: <stdexcept>
네임 스페이스: std