Can a for loop be written to create an infinite loop or is it only while loops that do that?

前端 未结 12 1610
时光取名叫无心
时光取名叫无心 2021-01-17 23:58

Can a for loop be written in Java to create an infinite loop or is it only while loops that cause that problem?

12条回答
  •  情书的邮戳
    2021-01-18 00:51

    The way I made my server to run as long until I shut it down is

    for(int i = 0;i<-1;i++){//code here}

提交回复
热议问题