Best refactoring for the dreaded While (True) loop

前端 未结 12 1115
感动是毒
感动是毒 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:59

    void whiletrue_sim(void)
      {
        //some code
        whiletrue_sim();
      }
    

    Warning: Your stack may overflow.

提交回复
热议问题