我有一个 C++ 应用程序,它有一次无法重现的断言失败。这是一次失败的代码:
unsigned int test(std::vector<CAction> actionQueue) {
unsigned int theLastCount = actionQueue.size() - 1;
std::vector<CAction>::const_reverse_iterator rItr = actionQueue.rbegin();
std::vector<CAction>::const_reverse_iterator rEndItr = actionQueue.rend();
for (; rItr != rEndItr; ++rItr, --theLastCount) {
const CAction &fileAction = *rItr;
if (fileAction.test()) {
continue;
}
return theLastCount;
}
assert(theLastCount == 0); // How could this fail?
return theLastCount;
}
不知何故,循环完成后 theLastCount 不为零。
从我对逻辑的阅读来看,这应该是不可能的,除非:
- 其他一些线程影响了actionQueue(我认为这是不可能的)。
- 发生了一些短暂的内存损坏。
我在这里错过了什么愚蠢的东西,我的代码中是否有错误?请注意,在我看到这一点的情况下, theLastCount 应该已初始化为 1,因为该向量有两个元素。