range_error 类
此类用作所有引发报告范围错误(按数学方式,而不是迭代器)的异常的基类。
语法
class range_error : public runtime_error {
public:
explicit range_error(const string& message);
explicit range_error(const char *message);
};
备注
what 返回的值是 message.data()
的副本。 有关详细信息,请参阅 basic_string::data。
示例
// range_error.cpp
// compile with: /EHsc
#include <exception>
#include <iostream>
#include <stdexcept>
#include <typeinfo>
using namespace std;
int main()
{
try
{
throw range_error("The range is in error!");
}
catch (const exception& e)
{
cerr << "Caught: " << e.what() << endl;
cerr << "Type: " << typeid(e).name() << endl;
}
}
/* Output:
Caught: The range is in error!
Type: class std::range_error
*/
要求
标头:<stdexcept>
命名空间: std