std::range_error
来自 cppreference.com
定义在头文件 <stdexcept> 中 |
||
class range_error; |
||
定义了一种作为异常抛出的对象类型。它可以用来报告范围错误(即,计算结果不能用目标类型表示的情况)。
唯一抛出此异常的标准库组件是 std::wstring_convert::from_bytes 和 std::wstring_convert::to_bytes。
标准库组件中的数学函数不会抛出此异常(数学函数报告范围错误,如 math_errhandling 中指定)。
继承关系图
内容 |
[编辑] 成员函数
(构造函数) |
使用给定的消息构造一个新的 range_error 对象。(公共成员函数) |
operator= |
替换 range_error 对象(公共成员函数) |
std::range_error::range_error
range_error( const std::string& what_arg ); |
(1) | |
range_error( const char* what_arg ); |
(2) | |
range_error( const range_error& other ); |
(3) | (自 C++11 起为 noexcept) |
3) 复制构造函数。如果 *this 和 other 都具有动态类型
std::range_error
,则在构造后,std::strcmp(what(), other.what()) == 0。复制构造函数不会抛出任何异常。参数
what_arg | - | 解释性字符串 |
other | - | 要复制的另一个异常对象 |
异常
1,2) 可能抛出 std::bad_alloc。
备注
由于不允许复制 std::range_error
抛出异常,因此此消息通常在内部存储为单独分配的引用计数字符串。这也是没有接受 std::string&&
的构造函数的原因:无论如何它都必须复制内容。
在解决 LWG issue 254 之前,非复制构造函数只能接受 std::string。为了构造一个 std::string 对象,必须进行动态分配。
在解决 LWG issue 471 之后,派生的标准异常类必须具有公开可访问的复制构造函数。只要通过 what()
获得的解释性字符串对于原始对象和复制对象相同,它就可以隐式定义。
std::range_error::operator=
range_error& operator=( const range_error& other ); |
(自 C++11 起为 noexcept) | |
用 other 的内容赋值。如果 *this 和 other 都具有动态类型 std::range_error
,则在赋值后,std::strcmp(what(), other.what()) == 0。复制赋值运算符不会抛出任何异常。
参数
other | - | 要赋值的另一个异常对象 |
返回值
*this
备注
在解决 LWG issue 471 之后,派生的标准异常类必须具有公开可访问的复制赋值运算符。只要通过 what()
获得的解释性字符串对于原始对象和复制对象相同,它就可以隐式定义。
从 std::runtime_error 继承
从 std::exception 继承
成员函数
[虚拟] |
销毁异常对象 ( std::exception 的虚拟公共成员函数) |
[虚拟] |
返回解释性字符串 ( std::exception 的虚拟公共成员函数) |
[编辑] 缺陷报告
以下行为更改缺陷报告已追溯应用于以前发布的 C++ 标准。
DR | 应用于 | 发布的行为 | 正确行为 |
---|---|---|---|
LWG 254 | C++98 | 接受 const char* 的构造函数缺失 | 添加 |
LWG 471 | C++98 | std::range_error 的解释性字符串副本是实现定义的 |
它们与原始std::range_error 对象相同 |