/*
永远停不下来的循环,叫死循环。
死循环的标准格式:
while (true) {
循环体;
}
*/
public class Demo33 {
public static void main(String[] args) {
while (true) {
System.out.println("Hello" );
}
}
}
标签:停不下来,循环体,public,while,永远,true,死循环
来源: https://www.cnblogs.com/hgy8/p/15027288.html