Java中 “异常Exception”知识体系 学习笔记
class { public static void main(String[] args) { int x = 0; try { x = 4; } catch () { } finally { System.out.println("x="+x); } }}
?
?
?
?
?
?
?
?
?
?
?
?
?
?
?
?
?
?
?
?
?
?
?
?
?
?
?
?
?
?
?
?
?
?
?
?
?
?
?