命名空间
变体
操作

std::out_of_range

来自 cppreference.com
< cpp‎ | error
定义在头文件 <stdexcept>
class out_of_range;

定义了一种作为异常抛出的对象类型。它报告试图访问定义范围之外的元素所产生的错误。

它可能被 std::bitsetstd::basic_string 的成员函数、std::stoistd::stod 函数族以及边界检查的成员访问函数(例如 std::vector::atstd::map::at)抛出。

cpp/error/exceptioncpp/error/logic errorstd-out of range-inheritance.svg

继承图

内容

[编辑] 成员函数

(构造函数)
使用给定消息构造一个新的 out_of_range 对象
(公共成员函数)
operator=
替换 out_of_range 对象
(公共成员函数)

std::out_of_range::out_of_range

out_of_range( const std::string& what_arg );
(1)
out_of_range( const char* what_arg );
(2)
out_of_range( const out_of_range& other );
(3) (自 C++11 起为 noexcept)
1) 使用 what_arg 作为解释性字符串构造异常对象。构造完成后,std::strcmp(what(), what_arg.c_str()) == 0.
2) 使用 what_arg 作为解释性字符串构造异常对象。构造完成后,std::strcmp(what(), what_arg) == 0.
3) 复制构造函数。如果 *thisother 都具有动态类型 std::out_of_range,那么 std::strcmp(what(), other.what()) == 0。复制构造函数不会抛出任何异常。

参数

what_arg - 解释性字符串
other - 要复制的另一个异常对象

异常

1,2) 可能会抛出 std::bad_alloc.

注意

因为不允许复制 std::out_of_range 抛出异常,所以此消息通常在内部存储为一个单独分配的引用计数字符串。这也是没有接受 std::string&& 的构造函数的原因:它无论如何都必须复制内容。

在解决 LWG 问题 254 之前,非复制构造函数只能接受 std::string。为了构造 std::string 对象,它必须进行动态分配。

在解决 LWG 问题 471 之后,派生的标准异常类必须具有一个公开可访问的复制构造函数。只要通过 what() 获取的解释性字符串对于原始对象和复制对象相同,它就可以隐式定义。

std::out_of_range::operator=

out_of_range& operator=( const out_of_range& other );
(自 C++11 起为 noexcept)

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

参数

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

返回值

*this

注意

在解决 LWG 问题 471 之后,派生的标准异常类必须具有一个公开可访问的复制赋值运算符。只要通过 what() 获取的解释性字符串对于原始对象和复制对象相同,它就可以隐式定义。

std::logic_error 继承

std::exception 继承

成员函数

销毁异常对象
(std::exception 的虚拟公共成员函数) [编辑]
[虚拟]
返回解释性字符串
(std::exception 的虚拟公共成员函数) [编辑]

[编辑] 注意

标准错误条件 std::errc::result_out_of_range 通常表示结果(而不是输入)超出范围的条件,与 std::range_errorERANGE 关系更为密切。

[编辑] 缺陷报告

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

DR 应用于 已发布的行为 正确行为
LWG 254 C++98 接受 const char* 的构造函数缺失 添加
LWG 471 C++98 std::out_of_range 的说明性字符串
副本是实现定义的
它们与
原始 std::out_of_range 对象相同

[编辑] 另见

访问指定字符,并进行边界检查
(std::basic_string<CharT,Traits,Allocator> 的公共成员函数) [编辑]
访问指定字符,并进行边界检查
(std::basic_string_view<CharT,Traits> 的公共成员函数) [编辑]
访问指定元素,并进行边界检查
(std::deque<T,Allocator> 的公共成员函数) [编辑]
访问指定元素,并进行边界检查
(std::map<Key,T,Compare,Allocator> 的公共成员函数) [编辑]
访问指定元素,并进行边界检查
(std::unordered_map<Key,T,Hash,KeyEqual,Allocator> 的公共成员函数) [编辑]
访问指定元素,并进行边界检查
(std::vector<T,Allocator> 的公共成员函数) [编辑]
访问指定元素,并进行边界检查
(std::array<T,N> 的公共成员函数) [编辑]
(C++26)
访问指定元素,并进行边界检查
(std::span<T,Extent> 的公共成员函数) [编辑]