表达式:双端队列迭代器不可递增(特殊情况 - 我无法弄清楚)

发布于 2024-10-25 22:13:35 字数 226 浏览 1 评论 0原文

我有类似 deq.push_back(object) 的东西,它在源文件中工作正常,但在另一个文件中则不然 - 如果我在那里尝试相同的操作,我会在标题中收到运行时错误。怎么可能? deq 是代码工作的源文件中的全局变量。作为测试,我尝试在源文件之间交换全局声明和 extern,并且得到相同的结果,第二个源文件触发运行时错误。我在这里缺少什么?为什么我不能从那里使用push_back?

I have something like deq.push_back(object) which works fine in a source file but not in another one - if I try the same operation there I get the runtime error in the title. How can it be possible? deq is a global variable in the source file where the code works. Just as a test, I tried to swap the global declaration and the extern between the source files and I get the same result, the second source file triggers the runtime error. What am I missing here? Why I can't use push_back from there?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

吲‖鸣 2024-11-01 22:13:35

您是否有可能已将 deq.push_back(object) 语句移动到循环内,从而修改容器使循环迭代器无效?

Is it possible that you have moved the deq.push_back(object) statement to within a loop and thus modifying the container invalidates the loop iterator?

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文