public class Testqiuzhi {
public static void main(String args[ ])
{
int a=5, b=0, c;
try{
c=a/b;
//其他语句
}
catch(RuntimeException e)
{ System.out.println(e.toString()); }
catch(Exception ee)
{ System.out.println(ee.toString()); }
}
}
为什么catch 1 与catch2置换了位置不行了 必须是 RuntimeException e)这个放置前面 规矩本来就是这样吗 |