我有一个 While 循环,其中有一个 try catch 块。如何在 catch 语句中添加 break 语句来中断 while 循环。我不想使用 DO-WHILE 循环,因为我只有几分钟的时间来提交我的代码,而且我不想通过进行更改来破坏程序。但是,稍后我将考虑使用 DO-WHILE 语句更改代码。
while (true) {
try {
// something here
} catch (Exception e) {
// I need to break the forever while loop here
}
}