如何在 Java 中退出 while 循环?
2022-08-31 10:38:11
在Java中退出/终止while循环的最佳方法是什么?
例如,我的代码当前如下所示:
while(true){
if(obj == null){
// I need to exit here
}
}
在Java中退出/终止while循环的最佳方法是什么?
例如,我的代码当前如下所示:
while(true){
if(obj == null){
// I need to exit here
}
}
使用中断
:
while (true) {
....
if (obj == null) {
break;
}
....
}
但是,如果您的代码看起来与您指定的代码完全相同,则可以使用普通循环并将条件更改为:while
obj != null
while (obj != null) {
....
}
while(obj != null){
// statements.
}