最佳答案
在 Java 中退出/终止 while 循环的最佳方法是什么?
例如,我的代码目前如下:
while(true){
if(obj == null){
// I need to exit here
}
}