死循环


死循环格式:

1、for(;;) { }

2、while(true) { }

3、do{ }while(true);

案例一:

public class Demo1 {
/*
for死循环格式 :
for(;;){
}
while死循环格式 :
while(true){
}
do..while死循环格式 :
do{
}while(true);
问题: 死循环有应用场景吗?
例如: 键盘录入一个1-100之间的整数
顾虑: 键盘录入是用户操作的, 用户就可能会出现一些误操作的现象
*/
public static void main(String[] args) {
/*
for(;;){
System.out.println(“我停不下来了~”);
}
*/

/*
while(true){
System.out.println(“我停不下来了~”);
}
*/
do{
System.out.println(“我停不下来了~”);
}while(true);
System.out.println(“看看我能被执行吗?~”); // 无法访问的语句
}
}

原创文章,作者:ItWorker,如若转载,请注明出处:https://blog.ytso.com/279449.html

(0)
上一篇 2022年8月8日
下一篇 2022年8月8日

相关推荐

发表回复

登录后才能评论