本帖最后由 小泉真也 于 2014-1-15 10:39 编辑
- class Demo
- {
- int div(int a, int b) throws Exception //在功能上通过throws的关键字 声明该功能有可能会出现问题。
-
- {
- return a/b;
- }
- }
- class Exception
- {
- 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( e.toString() );
- }
-
- System.out.println("over");
-
- }
- }
复制代码 为什么我在虚拟机编译的时候,总是出现 不兼容的类型 这个错误 ?
恳请大家赐教
|