Namespaces
Variants

std:: range_error

From cppreference.net
定义于头文件 <stdexcept>
class range_error ;

定义一种被抛出作为异常的对象类型。它可用于报告范围错误(即计算结果无法用目标类型表示的情况)。

唯一会抛出此异常的标准库组件是 std::wstring_convert::from_bytes std::wstring_convert::to_bytes

标准库组件中的数学函数不会抛出此异常(数学函数按照 math_errhandling 中的规定报告范围错误)。

std::range_error 的所有成员函数均为 constexpr :可以在常量表达式求值过程中创建和使用 std::range_error 对象。

std::range_error 对象通常不能是 constexpr ,因为任何动态分配的存储都必须在同一常量表达式求值过程中释放。

(since C++26)
cpp/error/exception cpp/error/runtime error std-range error-inheritance.svg

继承关系图

目录

成员函数

(constructor)
构造具有给定消息的新 range_error 对象
(公开成员函数)
operator=
替换 range_error 对象
(公开成员函数)

std::range_error:: range_error

range_error ( const std:: string & what_arg ) ;
(1) (constexpr since C++26)
range_error ( const char * what_arg ) ;
(2) (constexpr since C++26)
range_error ( const range_error & other ) ;
(3) (noexcept since C++11)
(constexpr since C++26)
1) 使用 what_arg 作为解释字符串构造异常对象。构造后满足 std:: strcmp ( what ( ) , what_arg. c_str ( ) ) == 0
2) 使用 what_arg 作为解释字符串构造异常对象。构造后满足 std:: strcmp ( what ( ) , what_arg ) == 0
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 问题 254 解决之前,非拷贝构造函数只能接受 std::string 。这使得在构造 std::string 对象时必须进行动态分配。

LWG 问题 471 解决之后,派生的标准异常类必须具有公开可访问的拷贝构造函数。只要原始对象和拷贝对象通过 what() 获得的解释字符串相同,该构造函数可以隐式定义。

std::range_error:: operator=

range_error & operator = ( const range_error & other ) ;
(noexcept since C++11)
(constexpr since C++26)

使用 other 的内容进行赋值。如果 * this other 都具有动态类型 std::range_error ,则赋值后 std:: strcmp ( what ( ) , other. what ( ) ) == 0 。复制赋值运算符不会抛出任何异常。

参数

other - 用于赋值的另一个异常对象

返回值

* this

注解

LWG issue 471 决议后,派生的标准异常类必须具有可公开访问的复制赋值运算符。只要原始对象和复制对象通过 what() 获得的说明字符串相同,该运算符就可以隐式定义。

继承自 std:: exception

成员函数

[virtual]
销毁异常对象
( std::exception 的虚公开成员函数)
[virtual]
返回说明性字符串
( std::exception 的虚公开成员函数)

注释

功能测试 标准 功能
__cpp_lib_constexpr_exceptions 202502L (C++26) constexpr 异常类型

缺陷报告

以下行为变更缺陷报告被追溯应用于先前发布的C++标准。

缺陷报告 应用于 发布时行为 正确行为
LWG 254 C++98 缺少接受 const char * 的构造函数 已添加
LWG 471 C++98 std::range_error 副本的说明字符串
由实现定义
与原始 std::range_error 对象
的说明字符串相同