本帖最后由 包晗 于 2012-7-17 23:45 编辑
[/quote]
[quote]class Demo
{
int div(int a,int b) //throws Exception
{
return a/b;
}
}
class ExceptionDemo
{
public static void main(String[] args)
{
Demo d = new Demo();
try
{
int x = d.div(4,0);
System.out.println("x="+x);
}
catch (Exception e)
{
System.out.println("除零啦");
//System.out.println(e.getmessage());
}
System.out.println("over");
}
}
请问大家 这段代码哪有问题...系统报错
但是我又另外从写了一遍 通过了 ......和大家一起找找问题
|
|