表明例外链接 : 异常 « 语言基础知识 « 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 » 语言基础知识 » 异常屏幕截图 
表明例外链接
表明例外链接
 

// : c09:DynamicFields.java
// A Class that dynamically adds fields to itself.
// Demonstrates exception chaining.
// {ThrowsException}
// From 'Thinking in Java, 3rd ed.' (c) Bruce Eckel 2002
// www.BruceEckel.com. See copyright notice in CopyRight.txt.

class DynamicFieldsException extends Exception {
}

public class DynamicFields {

  private Object[][] fields;

  public DynamicFields(int initialSize) {
    fields = new Object[initialSize][2];
    for (int i = 0; i < initialSize; i++)
      fields[inew Object[] { null, null };
  }

  public String toString() {
    StringBuffer result = new StringBuffer();
    for (int i = 0; i < fields.length; i++) {
      result.append(fields[i][0]);
      result.append(": ");
      result.append(fields[i][1]);
      result.append("\n");
    }
    return result.toString();
  }

  private int hasField(String id) {
    for (int i = 0; i < fields.length; i++)
      if (id.equals(fields[i][0]))
        return i;
    return -1;
  }

  private int getFieldNumber(String idthrows NoSuchFieldException {
    int fieldNum = hasField(id);
    if (fieldNum == -1)
      throw new NoSuchFieldException();
    return fieldNum;
  }

  private int makeField(String id) {
    for (int i = 0; i < fields.length; i++)
      if (fields[i][0== null) {
        fields[i][0= id;
        return i;
      }
    // No empty fields. Add one:
    Object[][] tmp = new Object[fields.length + 1][2];
    for (int i = 0; i < fields.length; i++)
      tmp[i= fields[i];
    for (int i = fields.length; i < tmp.length; i++)
      tmp[inew Object[] { null, null };
    fields = tmp;
    // Reursive call with expanded fields:
    return makeField(id);
  }

  public Object getField(String idthrows NoSuchFieldException {
    return fields[getFieldNumber(id)][1];
  }

  public Object setField(String id, Object value)
      throws DynamicFieldsException {
    if (value == null) {
      // Most exceptions don't have a "cause" constructor.
      // In these cases you must use initCause(),
      // available in all Throwable subclasses.
      DynamicFieldsException dfe = new DynamicFieldsException();
      dfe.initCause(new NullPointerException());
      throw dfe;
    }
    int fieldNumber = hasField(id);
    if (fieldNumber == -1)
      fieldNumber = makeField(id);
    Object result = null;
    try {
      result = getField(id)// Get old value
    catch (NoSuchFieldException e) {
      // Use constructor that takes "cause":
      throw new RuntimeException(e);
    }
    fields[fieldNumber][1= value;
    return result;
  }

  public static void main(String[] args) {
    DynamicFields df = new DynamicFields(3);
    System.out.println(df);
    try {
      df.setField("d""A value for d");
      df.setField("number"new Integer(47));
      df.setField("number2"new Integer(48));
      System.out.println(df);
      df.setField("d""A new value for d");
      df.setField("number3"new Integer(11));
      System.out.println(df);
      System.out.println(df.getField("d"));
      Object field = df.getField("a3")// Exception
    catch (NoSuchFieldException e) {
      throw new RuntimeException(e);
    catch (DynamicFieldsException e) {
      throw new RuntimeException(e);
    }
  }
///:~


           
         
  
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. The finally clause is always executedThe finally clause is always executed
15. 你自己的异常处理类你自己的异常处理类
16. 捕捉异常系捕捉异常系
17. 例外是如何丢失的
18. 主要方法中的例外
19. 无视RuntimeExceptions无视RuntimeExceptions
20. Demonstrating fillInStackTrace()Demonstrating fillInStackTrace()
21. Put printStackTrace() into a String: redirect the StackTrace to a String with a StringWriter/PrintWriter
22. Rethrow不同的物体从一个被抓获Rethrow不同的物体从一个被抓获
23. 继承自己的例外继承自己的例外
24. Overridden methods may throw only the exceptions
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.