为什么 for(int i=0; i<10; i) 和 for(int i=0; i<10; i ) 返回相同?

新手上路,请多包涵

为什么

for(int i=0; i<10; i++)
    std::cout << i << std::endl;

for(int i=0; i<10; ++i)
    std::cout << i << std::endl;

返回相同:

 0 1 2 3 4 5 6 7 8 9

我期待预增量返回:

 1 2 3 4 5 6 7 8 9 10

因为它在返回之前会自行增加,对吧?

原文由 KcFnMi 发布,翻译遵循 CC BY-SA 4.0 许可协议

阅读 297
1 个回答

A for 循环

for(int i=0; i<10; i++)
    std::cout << i << std::endl;

与以下基本相同:

 {
    int i = 0;  // For loop initializer
    while (i < 10)  // For loop condition (and the actual loop)
    {
        std::cout << i << std::endl;  // For loop body
        i++;  // For loop post-expression
    }
}

现在将循环“后表达式” i++ 更改为 ++i 不会有任何区别,因为它的结果确实被丢弃了,并且在循环结束时执行。

原文由 Some programmer dude 发布,翻译遵循 CC BY-SA 3.0 许可协议

撰写回答
你尚未登录,登录后可以
  • 和开发者交流问题的细节
  • 关注并接收问题和回答的更新提醒
  • 参与内容的编辑和改进,让解决方法与时俱进
推荐问题