out_of_range Class
クラスは、有効な範囲外である引数を報告するためにスローされたすべての例外の基本クラスとして機能します。
class out_of_range : public logic_error {
public:
explicit out_of_range(const string& message);
explicit out_of_range(const char *message);
};
解説
exception Class によって返される値は、message.データのコピーです。
使用例
// 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;
};
}
出力
Caught: invalid string position
必要条件
Header: <stdexcept>
名前空間: std