一般异常和运行时异常区别? 能举例子吗? 作者: b_boywindy 时间: 2012-2-27 09:53
{
int plus(int a,int b)
{
if(b==0)
throw new ArithmeticException("被零除了");
return a/b;
}
}
class ExceptionDemo
{
public static void main(String[] args)
{
Demo d = new Demo();
int x = d.plus(3,0);
System.out.println("x=" + x);
}
}这里就是 运行时异常,RuntimeException 的子类异常ArithmeticException。