本帖最后由 贾文泽 于 2013-3-11 12:06 编辑
- class Arithmetic
- {
- public int div(int a,int b)
- {
- return a/b;
- }
- }
- class ExceptionDemo
- {
- public static void main(String[] args)
- {
- try
- {
- int x= new Arithmetic().div(4,0);
- System.out.println("x="+x);
- }
- catch (Exception e)//估计问题在这里
- {
- System.out.println("除零了");
-
- }
- System.out.println("over");
- }
- }
复制代码 会报错:
首先我这里面没有public类,不必类名和源文件名相同
java命名规则没要求不能使用关键字啊?
能不能告诉我这里为什么不能用Exception.java?
|