<1>
break MISSING_BLOCK_LABEL_88;
Exception e;
e;
这种情况应该改写为 catch子句。
<2>
i = 0;
goto _L1
_L3:
…..
…..
i++;
_L1:
if(i < axlssheetpkg.length) goto _L3; else goto _L2
_L2:
…..
…..
这种情况很明显改为for子句
<3>
v;
JVM INSTR tableswitch 0 5: default 432
goto _L1 _L2 _L3 _L4 _L5 _
改为switch呀。
2005年09月02日