本帖最后由 王靖远 于 2013-5-17 12:59 编辑
- class Demo
- {
-
- int div(int a,int b)
- {
-
-
- return a/b;
-
- }
- }
- class ExceptionDemo3
- {
- 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("over");
-
-
- }
- }
复制代码
帮忙看看怎么回事。和毕老师一样的代码。我这里编译不过去。我把.java文件放到其他的目录下就可以编译通过了。
|