使用 std::vector 和 .at() 进行二维数组边界检查
我有一个非常简单的问题,但对于女巫我找不到答案。
如何在 vector
的 2D 数组中使用
?.at(i)
向量<类型> >
我想要进行边界检查 - 女巫 .at(i)
函数会自动提供,但我只能使用 array[i][j]
女巫不会访问我的数组。 t 提供边界检查。
I've a quite simple question but for witch I cannot find the answer.
How can I use the .at(i)
in a 2D array of vector < vector <type> >
?
I want to have bounds checking - witch .at(i)
function provides automatically, but I can only access my array using the array[i][j]
witch doesn't provide for bounds checking.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
使用的正确语法是:
The correct syntax to use is:
由于
.at(i)
将返回对v[i]
处向量
的引用,因此请使用.at(i)。在(j)。
Since
.at(i)
will return a reference to thevector
atv[i]
, use.at(i).at(j)
.使用
vec.at(i).at(j)
并且必须在try-catch
块中使用它,因为at()
会抛出std::out_of_range 异常:
编辑:
正如您在评论中所说:
在这种情况下,您可以在打印超出范围的消息后在
catch
块中重新抛出,这样您就可以知道其原因停了下来。以下是重新抛出的方法:Use
vec.at(i).at(j)
and must use this intry-catch
block sinceat()
will throwstd::out_of_range
exception if the index is invalid:EDIT:
As you said in the comment:
In that case, you can rethrow in the
catch
block after printing the message that it went out of range, so that you can know the reason why it stopped. And here is how you rethrow: