- class Demo
- {
- public void method()
- {
- try
- {
- throw new Exception();//在try里抛出了异常,而且没有catch来处理这个异常,那么编译是不通过的。必须要在method上标示出来。
- 如果不在try里抛出异常,把throw new Exception()去掉,那么编译是可以通过的。也不需要在method上
- 标示出来。
- }
- finally
- {
- System.out.println("chus");
- }
- }
- }
- class Demod
- {
- public static void main(String[] args)
- {
- Demo d =new Demo();
- d.method();
- }
- }
复制代码 |