我有以下代码:

std::queue<unsigned int> offsets;
// (fill offsets here)

DEBUG(std::to_string(offsets.size())) // print offsets.size() to console
int iterations = 0;

while (!offsets.empty())
{
    iterations++;

    unsigned int currOffset = offsets.front();
    offsets.pop();

    if (currOffset == 0)
    {
        DEBUG("breaking from while loop")
        break;
    }

    // do something with currOffset
}

DEBUG(std::to_string(iterations))

由于某些原因,iterations永远不等于offsets.size()。我不确定为什么会这样。在我的测试应用程序中,offsets.size() == 28,但iterations == 11。在此应用程序中,我仅从while循环中断一次。

知道为什么会这样吗?非常感谢您的帮助。

最佳答案

因为第11个偏移量为零,并且条件中断在循环到达数据结构的结尾之前触发?

// do something with currOffset涉及从队列中弹出更多内容。

10-08 08:22