代码展示
public class Test {
public static void main(String[] args) {
int a = 0;
while (true) {
try {
System.out.println("输出值为:" + a);
if (a == 2) {
break;
} else {
a++;
}
} catch (Exception e) {
e.printStackTrace();
} finally {
System.out.println("finally执行了...");
}
}
}
}
执行结果
总结:
说明在brake前是执行了finally中的代码