out_of_range 类
此类用作引发报告无效自变量的所有异常的基类。
语法
class out_of_range : public logic_error {
public:
explicit out_of_range(const string& message);
explicit out_of_range(const char *message);
};
备注
what()
返回的值是 message.data()
的副本。 有关详细信息,请参阅 what
和 data
。
示例
// out_of_range.cpp
// compile with: /EHsc
#include <exception>
#include <iostream>
#include <string>
#include <typeinfo>
using namespace std;
int main()
{
try
{
string str("Micro");
string rstr("soft");
str.append(rstr, 5, 3);
cout << str << endl;
}
catch (const exception& e)
{
cerr << "Caught: " << e.what() << endl;
cerr << "Type: " << typeid(e).name() << endl;
}
}
/* Output:
Caught: invalid string position
Type: class std::out_of_range
*/
要求
标头:<stdexcept>
命名空间: std