std::out_of_range异常
Posted yemaomao
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了std::out_of_range异常相关的知识,希望对你有一定的参考价值。
使用C++容器类访问成员时由于使用问题可能会遇到"terminate called after throwing an instance of ‘std::out_of_range‘"或者"Abort message: ‘terminating with uncaught exception of type std::out_of_range"。问题的大概意思是:访问越界了。没有捕获std::out_of_range类型的异常终止。
通常在使用vector、map这样的C++容器类型时会遇到,这里我们以map类型为例,加以说明。
- std::out_of_range异常的描述
- 导致std::out_of_range的原因
- 如何避免std::out_of_range异常(即std::xx::at的使用)
std::out_of_range异常的描述
假设我们定义了一个map类型的变量g_mapIsDestroyedRefCount,要访问容器中的数据项有多种方式。例如,获取g_mapIsDestroyedRefCount中key值为cameraId的值,可以这样:
- g_mapIsDestroyedRefCount[cameraId]
- g_mapIsDestroyedRefCount.at(cameraId)
两种写法都可以获取key为cameraId的value,一般效果看不出来差别,但是当g_mapIsDestroyedRefCount中不存在key为cameraId的<key, value>时就会出现“std::out_of_range”访问越界问题。
导致std::out_of_range的原因
容器类型访问方法使用有问题
对于std::map::at官方声明:
mapped_type& at (const key_type& k); const mapped_type& at (const key_type& k) const;
Returns a reference to the mapped value of the element identified with key k. 返回元素键为k的映射值的引用,即Key为k的元素的对应value值。
If k does not match the key of any element in the container, the function throws an out_of_range exception. 如果容器中没有匹配的k键,该函数将抛出一个out_of_range异常
如何避免std::out_of_range异常
- 正确使用
- 错误使用
1.std::map::at的正确使用
#include <iostream> #include <string> #include <map> std::map<int, int> g_mapIsDestroyedRefCount; int main() { int cameraId = 1; cout << "Let‘s try"<< endl; //向map中添加测试数据 g_mapIsDestroyedRefCount.insert(std::pair<int, int>(0, 2))‘ cout << "cameraId:"<< cameraId<< "count:"; try { cout<< g_mapIsDestroyedRefCount.at(cameraId) <<endl; } catch (const std::out_of_range& oor) { std::cerr << " Out of range error:" << oor.what()<< endl; } cout << "try done"<< endl; return 0; }
运行结果:
2.std::map::at错误使用
#include <iostream> #include <string> #include <map> using namespace std; std::map<int, int> g_mapIsDestroyedRefCount; int main() { int cameraId = 2; cout<< "Let‘s try"<< endl; g_mapIsDestroyedRefCount.insert(std::pair<int, int>(0, 2)); cout<< "cameraId:"<< cameraId<< "count:"; //介绍中说的方法一,可以访问 cout<< g_mapIsDestroyedRefCount[cameraId]<< endl;
//方法二,异常
cameraId = 2; count<< g_mapIsDestroyedRefCount.at(cameraId)<< endl;
cout<< "try done"<< endl;
}
运行结果:(程序异常退出)
以上是关于std::out_of_range异常的主要内容,如果未能解决你的问题,请参考以下文章
查找 std::vector.at() 抛出 std::out_of_range 的位置
合并排序算法中的 C++“以 std::out_of_range:vector 类型的未捕获异常终止”错误
C++:未处理的异常:内存位置的 std::out_of_range
C++ 运行时终止 std::out_of_range [关闭]