📜  java restart while 循环 - Java 代码示例

📅  最后修改于: 2022-03-11 14:52:03.345000             🧑  作者: Mango

代码示例1
//use continue keyword

while (true) {
  //do stuff
  if (condition) continue; //goes to the top of while loop
  //do other stuff
}