For Loop or While Loop - Efficiency

前端 未结 8 1983
遥遥无期
遥遥无期 2021-01-12 08:03

This may be a stupid question, but how does the efficiency of a while loop compare to that of a for loop? I\'ve always been taught that if you can use a for loop,

8条回答
  •  慢半拍i
    慢半拍i (楼主)
    2021-01-12 08:10

    That depends on the exact compiler that you use. In your example, a good compiler will create the same machine code for both options.

提交回复
热议问题