使用 std::vector 和 .at() 进行二维数组边界检查

发布于 2024-12-08 23:11:57 字数 232 浏览 0 评论 0原文

我有一个非常简单的问题,但对于女巫我找不到答案。

如何在 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

笑着哭最痛 2024-12-15 23:11:57

使用的正确语法是:

array.at(i).at(j)

The correct syntax to use is:

array.at(i).at(j)
小伙你站住 2024-12-15 23:11:57

由于 .at(i) 将返回对 v[i]向量的引用,因此请使用 .at(i)。在(j)。

Since .at(i) will return a reference to the vector at v[i], use .at(i).at(j).

薄凉少年不暖心 2024-12-15 23:11:57

使用 vec.at(i).at(j) 并且必须在 try-catch 块中使用它,因为 at() 会抛出std::out_of_range 异常:

try
{
      T & item = vec.at(i).at(j);
}
catch(const std::out_of_range & e)
{
     std::cout << "either index i or j is out of range" << std::endl;
}

编辑:

正如您在评论中所说:

我实际上希望程序在引发异常时停止。 – jbssm 5 分钟前

在这种情况下,您可以在打印超出范围的消息后在 catch 块中重新抛出,这样您就可以知道其原因停了下来。以下是重新抛出的方法:

catch(const std::out_of_range & e)
{
     std::cout << "either index i or j is out of range" << std::endl;
     throw; //it rethrows the excetion
}

Use vec.at(i).at(j) and must use this in try-catch block since at() will throw std::out_of_range exception if the index is invalid:

try
{
      T & item = vec.at(i).at(j);
}
catch(const std::out_of_range & e)
{
     std::cout << "either index i or j is out of range" << std::endl;
}

EDIT:

As you said in the comment:

I actually want the program to stop in case the exception is raised. – jbssm 5 mins ago

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:

catch(const std::out_of_range & e)
{
     std::cout << "either index i or j is out of range" << std::endl;
     throw; //it rethrows the excetion
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文