Best refactoring for the dreaded While (True) loop

前端 未结 12 1091
感动是毒
感动是毒 2021-02-04 10:27

If, like me, you shiver at the site of a While (True) loop, then you too must have thought long and hard about the best way to refactor it away. I\'ve seen several different im

12条回答
  •  面向向阳花
    2021-02-04 10:54

    #define ever 1
    for (;ever;)
    

    ?

    Meh, just leave it how it is, while (true) is probably as legible as you're going to get..

提交回复
热议问题