Overridden methods may throw only the exceptions : 异常 « 语言基础知识 « Java

En
Java
1. 图形用户界面
2. 三维图形动画
3. 高级图形
4. 蚂蚁编译
5. Apache类库
6. 统计图
7. 
8. 集合数据结构
9. 数据类型
10. 数据库JDBC
11. 设计模式
12. 开发相关类
13. EJB3
14. 电子邮件
15. 事件
16. 文件输入输出
17. 游戏
18. 泛型
19. GWT
20. Hibernate
21. 本地化
22. J2EE平台
23. 基于J2ME
24. JDK-6
25. JNDI的LDAP
26. JPA
27. JSP技术
28. JSTL
29. 语言基础知识
30. 网络协议
31. PDF格式RTF格式
32. 映射
33. 常规表达式
34. 脚本
35. 安全
36. Servlets
37. Spring
38. Swing组件
39. 图形用户界面
40. SWT-JFace-Eclipse
41. 线程
42. 应用程序
43. Velocity
44. Web服务SOA
45. 可扩展标记语言
Java 教程
Java » 语言基础知识 » 异常屏幕截图 
Overridden methods may throw only the exceptions
 
// : c09:StormyInning.java
// Overridden methods may throw only the exceptions
// specified in their base-class versions, or exceptions
// derived from the base-class exceptions.
// From 'Thinking in Java, 3rd ed.' (c) Bruce Eckel 2002
// www.BruceEckel.com. See copyright notice in CopyRight.txt.

class BaseballException extends Exception {
}

class Foul extends BaseballException {
}

class Strike extends BaseballException {
}

abstract class Inning {
  public Inning() throws BaseballException {
  }

  public void event() throws BaseballException {
    // Doesn't actually have to throw anything
  }

  public abstract void atBat() throws Strike, Foul;

  public void walk() {
  // Throws no checked exceptions
}

class StormException extends Exception {
}

class RainedOut extends StormException {
}

class PopFoul extends Foul {
}

interface Storm {
  public void event() throws RainedOut;

  public void rainHard() throws RainedOut;
}

public class StormyInning extends Inning implements Storm {
  // OK to add new exceptions for constructors, but you
  // must deal with the base constructor exceptions:
  public StormyInning() throws RainedOut, BaseballException {
  }

  public StormyInning(String sthrows Foul, BaseballException {
  }

  // Regular methods must conform to base class:
  //! void walk() throws PopFoul {} //Compile error
  // Interface CANNOT add exceptions to existing
  // methods from the base class:
  //! public void event() throws RainedOut {}
  // If the method doesn't already exist in the
  // base class, the exception is OK:
  public void rainHard() throws RainedOut {
  }

  // You can choose to not throw any exceptions,
  // even if the base version does:
  public void event() {
  }

  // Overridden methods can throw inherited exceptions:
  public void atBat() throws PopFoul {
  }

  public static void main(String[] args) {
    try {
      StormyInning si = new StormyInning();
      si.atBat();
    catch (PopFoul e) {
      System.err.println("Pop foul");
    catch (RainedOut e) {
      System.err.println("Rained out");
    catch (BaseballException e) {
      System.err.println("Generic baseball exception");
    }
    // Strike not thrown in derived version.
    try {
      // What happens if you upcast?
      Inning i = new StormyInning();
      i.atBat();
      // You must catch the exceptions from the
      // base-class version of the method:
    catch (Strike e) {
      System.err.println("Strike");
    catch (Foul e) {
      System.err.println("Foul");
    catch (RainedOut e) {
      System.err.println("Rained out");
    catch (BaseballException e) {
      System.err.println("Generic baseball exception");
    }
  }
///:~



           
         
  
Related examples in the same category
1. Illustrate various Exceptions Illustrate various Exceptions
2. 经验例外经验例外
3. StackTrace
4. 使用堆栈跟踪的一个例外情况
5. What happens if a method declares an unchecked exception?
6. 简单的演示例外简单的演示例外
7. 简单的演示例外,最后Finally简单的演示例外,最后Finally
8. ThreadBasedCatcher - Demonstrate catching uncaught exceptions
9. 例外捕获例外捕获
10. 关闭选中的例外
11. 表明例外链接表明例外链接
12. 最后总是捕获最后总是捕获
13. 表明了异常的方法表明了异常的方法
14. 进一步点缀的异常类进一步点缀的异常类
15. The finally clause is always executedThe finally clause is always executed
16. 你自己的异常处理类你自己的异常处理类
17. 捕捉异常系捕捉异常系
18. 例外是如何丢失的
19. 主要方法中的例外
20. 无视RuntimeExceptions无视RuntimeExceptions
21. Demonstrating fillInStackTrace()Demonstrating fillInStackTrace()
22. Put printStackTrace() into a String: redirect the StackTrace to a String with a StringWriter/PrintWriter
23. Rethrow不同的物体从一个被抓获Rethrow不同的物体从一个被抓获
24. 继承自己的例外继承自己的例外
25. 掷异输出掷异输出
www.java2java.com | Contact Us
Copyright 2010 - 2030 Java Source and Support. All rights reserved.
All other trademarks are property of their respective owners.