range_error 類別
類別可作為擲回之所有例外狀況的基類來報告範圍錯誤(如數學而非反覆運算器所示)。
語法
class range_error : public runtime_error {
public:
explicit range_error(const string& message);
explicit range_error(const char *message);
};
備註
所傳 回的值,其 為的 message.data()
複本。 如需詳細資訊,請參閱 basic_string::d ata。
範例
// 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
*/
需求
Header:<stdexcept>
命名空間:std