标题: 关于异常中e.printStackTrace() 方法的问题 [打印本页] 作者: 蓝蓝的天 时间: 2015-4-21 20:38 标题: 关于异常中e.printStackTrace() 方法的问题 class ExceptionClass
{
public int div (int a,int b)
{
return a/b;
}
}
class ExceptionDemo
{
public static void main(String[] args)
{
ExceptionClass de = new ExceptionClass();
try
{
int num = de.div(4,0);
System.out.println("运行结果是"+num);
}
catch(Exception e)
{