1
dorentus 2014-07-18 16:34:44 +08:00 1
2321 除以 0,抛出 ArithmeticException 之后就结束了,“int b=2321/a;”这行之后的代码不会被执行到,自然不再会抛出其它异常。
|
2
cpp255 2014-07-18 16:36:32 +08:00 1
int b=2321/a; // 这里已经抛出了 ArithmeticException 异常,程序跳出 try 了,下面的代码就不会继续运行了
``` int c[]={1}; c[42]=44; ``` |
6
zqhong 2014-07-18 20:28:04 +08:00 2
单步了一下:
|
7
zqhong 2014-07-18 20:36:51 +08:00
|
8
zqhong 2014-07-18 22:17:14 +08:00
|
10
zqhong 2014-07-19 10:02:48 +08:00 2
@vainly Linux -- byzanz-record, windows -- GifCam(http://blog.bahraniapps.com/gifcam/)
|
11
tongchengpp 2014-07-20 10:12:49 +08:00
@zqhong 好东西 谢谢~
|