Java资源网

| JAVA基础 | 环境配置 | JDBC | 线程技术 | Socket编程 | JavaMail | JAVA与XML | 设计模式 | 技术新闻 | Java认证 | 程序人生 软件下载
| JSP&Servlet | Spring | Struts | Hibernate | JBuilder | Eclipse | WebService | EJB技术 | J2ME开发 | 应用服务器 | JXTA | Ajax
Articles search文章搜索
   关键字:
   类 别:
       
New download 最新下载
· [组件]HTML Parser 1.5
· [教程]WebSphere Studio应用教程
· [组件]JDom 1.0
· [工具]Junit3.8.1
· [教程]EJB编程及J2EE系统架构和设计
· [教程]EJB教程
· [教程]J2EE Tutorial中文版
· [教程]Java编程思想2(英文)
· [教程]java编程思想(完整版)
· [教程]Java网络编程
New articles 最新文章
· 设计移动 Web 服务
· 解析XML的时候完全忽略DTD
· 理解XML Schema XML Schema 初步
· 标签库的深入研究
· 提升JSP应用程序的七大绝招
· 如何使用JDOM对XML文件进行操作
· 处理XML字符串中特殊字符
· 利用Digester把XML转换成为Java对象
· 使用WebService 和RMI远程协作
· 使用Axis开发Web Service程序
Articles top 热门文章
· Eclipse基础--plugin插件安装(6644)
· eclipse+tomcat+lomboz的安装配置说明(4774)
· Java程序员就业前景(4584)
· Windows下JAVA环境变量的设置祥解(3788)
· Tomcat下JSP、Servlet和JavaBean环境的配置(3716)
· 使用links方式安装Eclipse插件(3698)
· 一个老程序员的心理话(3533)
· linux下jdk的安装与配置(3459)
· 初学者入门:Structs中基本配置入门(3334)
· Eclipse 运行命令行参数大全(3084)
您的位置:首页>>JAVA基础>>Java编程思想读书笔记-5(第10章)
Java编程思想读书笔记-5(第10章)
2007-04-13   来源:www.javaresearch.org  作者:未知

第10章    通过异常处理错误


一.    基本异常

1.    抛出异常的原理
1)    像产生一个Java对象那样在heap上以new产生一个异常对象。
2)    停止目前的执行路线,将上述那个异常对象的reference自目前的context丢出。
3)    异常处理机制接手工作,寻找得以继续执行的适当地点。
2.    产生一个异常对象
异常类有两个构造函数:一个default构造函数;一个带String型参数的构造函数,参数的信息可以通过异常类中的各种方法取出。
3.    异常类的结构
     
1)    Error是一些编译期错误或系统错误,一般无需在程序中捕捉到Error异常。
2)    Exception是我们能捕捉到的异常,其中Exception异常又分为RuntimeException和non-RuntimeException两大类异常。

二.    异常的捕捉和处理

1.    异常的捕捉
1.1    通过try…catch就可捕捉异常
  1. import java.lang.RuntimeException;
  2. import java.lang.NullPointerException;
  3. import java.sql.SQLException;
  4. import java.io.IOException;
  5. class TestException{
  6.     public void testSQLException() throws SQLException {
  7.         throw new SQLException();
  8.     }
  9.     public void testIOException() throws IOException {}
  10. }
  11. public class Test{   
  12.     public static void main(String[] args){
  13.         TestException te = new TestException();
  14.         try{
  15.             te.testSQLException();
  16.             te.testIOException();
  17.         }
  18.         catch(SQLException ex){
  19.             System.out.println("catch SQLException in main");
  20.         }
  21.         catch(IOException ex){
  22.             System.out.println("catch IOException in main");
  23.         }
  24.         catch(Exception ex){ //(1)
  25.             System.out.println("catch Exception in main");
  26.         }
  27.     }
  28. }

运行结果为:catch SQLException in main
只有参数类型与异常类型相同或相近的catch会被执行。
1.2    捕捉所有异常
如果想捕捉所有异常,只要捕捉Exception异常就行,如上面代码的(1)处
2.    异常规格(exception specification)
1)    在函数定义时可以声明异常规格。如果一个函数在异常规格中声明了non-RuntimeException异常,那么当调用这个函数时,就一定要捕捉异常规格中的non-RuntimeException异常。
  1. import java.lang.RuntimeException;
  2. import java.lang.NullPointerException;
  3. import java.sql.SQLException;
  4. class TestException{
  5.     //(1)异常规格中声明将抛出RuntimeException异常
  6. public void testRuntime() throws RuntimeException {}
  7. //(2)异常规格中声明将抛出NullPointerException异常
  8. public void testNullPointer() throws NullPointerException {}
  9. //(3)异常规格中声明将抛出non-RuntimeException异常
  10.     public void testNonRuntime() throws SQLException {}
  11. }
  12. public class Test{   
  13.     public static void main(String[] args){
  14.         TestException te = new TestException();
  15.         te.testRuntime(); //(4)
  16.         te.testNullPointer(); //(5)
  17.         //te.testNonRuntime(); (6)
  18.         try{
  19.             te.testNonRuntime();
  20.         }
  21.         catch(SQLException ex){}
  22.     }
  23. }

在上述代码中,(1)处在异常规格中声明将抛出RuntimeException;(2)在异常规格中声明将抛出NullPointerException,而NullPointerException是RuntimeException的子类,所以在调用这两个函数时,可不捕捉异常,如(4)(5)处的代码一样直接调用。但(3)处在异常规格中声明将抛出SQLException,而SQLException不是RuntimeException的子类,所以必须捕捉SQLException异常。
2)    如果要在一个函数中抛出non-RuntimeException异常,则必须要在异常规格中声明该异常。
  1. import java.sql.SQLException;
  2. import java.io.IOException;
  3. class Test1{
  4.     public void f() throws SQLException{ //(2)
  5.        throw new IOException("IOException");  //(1)
  6.     }
  7. }
  8. public class ExplicitStatic{   
  9.     public static void main(String[] args){
  10.         Test1 te = new Test1();
  11.         try{
  12.             te.f();
  13.         }
  14.         catch(Exception ex){
  15.             System.out.println("catch Exception in main");
  16.         }
  17.     }
  18. }

在(1)处抛出了一个没有在异常规格中被声明的non-RuntimeException异常,在编译时会出错。
3.    取得异常中的信息的几个函数
1)    String getMessage()、getLocalizedMessage 、toString
取得异常对象中的信息
  1. import java.lang.RuntimeException;
  2. import java.lang.NullPointerException;
  3. Import java.sql.SQLException;
  4. import java.io.IOException;
  5. class TestException{
  6.             public void tSql() throws SQLException {
  7.                 System.out.println("Originating the exception in tSql()");
  8.                 throw new SQLException("throw in tSql");
  9.             }
  10. }
  11. public class Test{   
  12.             public static void main(String[] args){
  13.                 TestException te = new TestException();
  14.                 try{
  15.                     te.tSql();
  16.                 }
  17.                 catch(SQLException ex){
  18.                     System.out.println("catch SQLException in main");
  19.                     System.out.println("ex.getMessage():" + ex.getMessage());
  20. System.out.println("ex.getLocalizedMessage():" + 
  21. ex.getLocalizedMessage());
  22.                     System.out.println("ex.toString():" + ex.toString());
  23.                 }
  24.                 catch(Exception ex){
  25.                     System.out.println("catch Exception in main");
  26.                 }
  27.             }
  28. }

运行结果:
Originating the exception in tSql()
catch SQLException in main
ex.getMessage():throw in tSql
ex.getLocalizedMessage():throw in tSql
ex.toString():java.sql.SQLException: throw in tSql
2)    void printStackTrace()、Throwable fillStackTrace()
printStackTrace打印出Throwable和其call stack trace。
FillStackTrace则在调用点设立新的stack trace信息
  1. import java.sql.SQLException;
  2. class TestException{
  3.     public static void tSql() throws SQLException {
  4.         System.out.println("Originating the exception in tSql()");
  5.         throw new SQLException("throw in tSql");
  6.     }
  7.     public void f() throws SQLException{
  8.         try{
  9.             tSql();
  10.         }
  11.         catch(SQLException ex){
  12.             System.out.println("In f(), e.printStackTrace()");
  13.             ex.printStackTrace();
  14. throw ex; //(1)
  15. //throw (SQLException)ex.fillInStackTrace(); (2)
  16.         }
  17.     }
  18. }
  19. public class Test{   
  20.     public static void main(String[] args){
  21.         TestException te = new TestException();
  22.         try{
  23.             te.f();
  24.         }
  25.         catch(SQLException ex){
  26.             System.out.println("catch in main, e.printStackTrace()");
  27.             ex.printStackTrace();
  28.         }
  29.         catch(Exception ex){
  30.             System.out.println("catch Exception in main");
  31.         }
  32.     }
  33. }

结果为:
Originating the exception in tSql()
In f(), e.printStackTrace()
catch in main, e.printStackTrace()
java.sql.SQLException: throw in tSql
    void TestException.tSql()
        Test.java:5
    void TestException.f()
        Test.java:9
    void Test.main(java.lang.String[])
        Test.java:22
java.sql.SQLException: throw in tSql
    void TestException.tSql()
        Test.java:5
    void TestException.f()
        Test.java:9
    void Test.main(java.lang.String[])
        Test.java:22
如果把(1)处代码注释掉,并去年(2)处代码的注释,结果将变成:
Originating the exception in tSql()
In f(), e.printStackTrace()
catch in main, e.printStackTrace()
java.sql.SQLException: throw in tSql
    void TestException.tSql() //(3)
        Test.java:6
    void TestException.f()
        Test.java:10
    void Test.main(java.lang.String[])
        Test.java:24
java.sql.SQLException: throw in tSql
    void TestException.f() //(4)
        Test.java:16
    void Test.main(java.lang.String[])
        Test.java:24
由于在代码(2)处设立新的stack trace信息,所以异常会被认为是在f()中发出的,所以在main()中得到的异常原始抛出点为f()(见(3)),而在f()中为tSql()(见(6))。
3)    如果重新抛出一个不同类型的异常,也能产生fillStackTrace()函数的效果。如果把上面代码的f()函数修改成下面的样子:
  1. public void f() throws SQLException,IOException{
  2. try{
  3.         tSql();
  4.     }
  5.     catch(SQLException ex){
  6.         System.out.println("In f(), e.printStackTrace()");
  7.         ex.printStackTrace();       
  8.         throw new IOException(); //(1)
  9.     }
  10. }

则结果为:
Originating the exception in tSql()
In f(), e.printStackTrace()
catch Exception in main
java.sql.SQLException: throw in tSql
    void TestException.tSql()
        Test.java:6
    void TestException.f()
        Test.java:10
    void Test.main(java.lang.String[])
        Test.java:25
java.io.IOException
    void TestException.f()
        Test.java:17
    void Test.main(java.lang.String[])
        Test.java:25
由于在(1)处抛出了一个新的类型的异常,那么在main()中捕捉到的是新的异常,所以在main()中捕捉到的异常的原始抛出点为f()。
4.    RuntimeException异常
RuntimeException及其子类所代表的异常我们在程序中不用进行捕捉,如果发生此类异常,Java会自动抛出相应的异常对象,如:
  1. class TestException{    
  2.     public static void g(int x) {
  3.         System.out.println("10/" + x + " = " + 10/x);
  4.     }
  5. }
  6. public class Test{   
  7.     public static void main(String[] args){
  8.         TestException.g(2);
  9.         TestException.g(0); //(1)
  10.     }
  11. }

上面代码在编译时不会发生错误,只有在运行时(1)处会发生错误。虽然除法可能会存在错误,但我们不用进行捕捉,当发生错误时,Java会自动抛出相应异常。


三.    以finally进行清理

1.    如果某段代码不管是否发生异常都要执行,那可把它改入finally块中。
  1. import java.sql.SQLException;
  2. class TestException{
  3.     public static void tSql() throws SQLException {
  4.         System.out.println("Originating the exception in tSql()");
  5.         throw new SQLException("throw in tSql");
  6.     }
  7.     public void f() throws SQLException{
  8.         try{
  9.             tSql();
  10.         }
  11.         catch(SQLException ex){
  12.             System.out.println("catch SQLException in f()");
  13.             throw ex; //(1)
  14.         }  
  15.         finally{
  16.             System.out.println("finally in f()");
  17.         }
  18.     }
  19. }
  20. public class Test{   
  21.     public static void main(String[] args){
  22.         TestException te = new TestException();
  23.         try{
  24.             te.f();
  25.         }
  26.         catch(SQLException ex){
  27.             System.out.println("catch te.f() SQLException in main");
  28.         }
  29.         catch(Exception ex){
  30.             System.out.println("catch te.f() Exception in main");
  31.         } 
  32.     }
  33. }

运行结果为:
Originating the exception in tSql()
catch SQLException in f()
finally in f()
catch te.f() SQLException in main
虽然在代码(1)处重新抛出异常,但finally块中的代码仍然会被执行。
2.    finally造成的异常遗失
如果在finally中执行的代码又产生异常,那么在上一层调用中所捕捉到的异常的起始抛出点会是finally所在的函数。
  1. import java.sql.SQLException;
  2. class TestException{
  3.     public static void tSql1() throws SQLException {
  4.         System.out.println("Originating the exception in tSql()");
  5.         throw new SQLException("throw in tSql1");
  6.     }
  7.     public static void tSql2() throws SQLException {
  8.         System.out.println("Originating the exception in tSql()");
  9.         throw new SQLException("throw in tSql2");
  10.     }
  11.     public void f() throws SQLException{
  12.         try{
  13.             tSql1();
  14.         }
  15.         catch(SQLException ex){
  16.             System.out.println("catch SQLException in f()");
  17.             throw ex; //(2)
  18.         }  
  19.         finally{
  20.             System.out.println("finally in f()");
  21.             //tSql2(); (1)
  22.         }
  23.     }
  24. }
  25. public class Test{   
  26.     public static void main(String[] args){
  27.         TestException te = new TestException();
  28.         try{
  29.             te.f();
  30.         }
  31.         catch(SQLException ex){
  32.             System.out.println("catch te.f() SQLException in main");
  33.             System.out.println("getMessage:" + ex.getMessage());
  34.             System.out.println("printStackTrace:");
  35.             ex.printStackTrace();
  36.         }
  37.     }
  38. }

运行结果为:
Originating the exception in tSql()
catch SQLException in f()
finally in f()
catch te.f() SQLException in main
getMessage:throw in tSql1
printStackTrace:
java.sql.SQLException: throw in tSql1
    void TestException.tSql1()
        Test.java:5
    void TestException.f()
        Test.java:13
    void Test.main(java.lang.String[])
        Test.java:29
从结果可以看出,在main()中能正确打印出所捕捉到的异常的起始抛出点。但如果去掉代码(1)的注释,结果将变为:
Originating the exception in tSql()
catch SQLException in f()
finally in f()
Originating the exception in tSql()
catch te.f() SQLException in main
getMessage:throw in tSql2
printStackTrace:
java.sql.SQLException: throw in tSql2
    void TestException.tSql2()
        Test.java:9
    void TestException.f()
        Test.java:21
    void Test.main(java.lang.String[])
        Test.java:29
从结果可以看出,在main()中捕捉到的异常是finally中产生的异常,代码(2)中抛出的异常丢失了。
    
四.    继承中异常

1.    关于构造函数中的异常
1.1    构造函数中的异常规则
某个derived class构造函数的“异常规格接口“可以比其所调用的父类的构造函数的异常规格接口宽,但决不能变窄。
1)    derived class的构造函数必须在自己的异常规格中声明所有base class构造函数的异常规格中所声明的异常。
2)    在derived class的构造函数的异常规格中还可以声明新的异常,即声明在base class构造函数的异常规格中没有声明的异常。
1.2    原因
当在产生一个derived class的对象时,会在derived class的构造函数中调用base class的构造函数(初始化过程请见第6章),所以在derived class的构造函数中可能会抛出base class构造函数的异常规格中声明的异常,因此要在derived class的异常规格中声明base class构造函数的异常规格中声明的异常。
**:如果调用的函数的异常规格中声明了异常,那么在调用该函数的时候要捕捉它的异常规格中声明的异常。但在derived class构造函数中却无法捕捉其base class构造函数所掷出的异常。
2.    关于非构造函数的异常规则
2.1    某个函数的“异常规格接口“在继承和重载中可以变窄,但决不能变宽
要覆写base class的函数时,如果被覆写函数(base class中的函数)的异常规格中声明了异常,那么覆写函数(derived class中覆写了base class中的函数的那个函数)的异常规格中可以声明(1)与被覆写函数完全相同的异常;(2)被覆写函数异常规格中的部分异常或其子类异常;(3)不声明异常规格。
2.2    原因
这么做是为了满足“能处理被覆写函数的代码,不用做任何修改就能处理覆写函数的代码”的原则。
如果覆写函数的异常规格中声明了在被覆写函数的异常规格中不存在的异常,那么能处理被覆写函数的代码就不能处理覆写函数,因为没有捕捉覆写函数中不存在于被覆写函数中的异常声明。
  1. import java.sql.SQLException;
  2. class BaseClass{
  3.             public void f(){}
  4. }
  5. class DerivedClass1 extends BaseClass{
  6.             //public void f() throws SQLException {} (1)
  7.             public void f() {} //(2)
  8. }
  9. public class Test{   
  10.             public static void f(BaseClass bc) { bc.f(); }
  11.             /* (3)
  12. public static void f(BaseClass bc) {
  13.                 try{
  14.                     bc.f();
  15.                 }
  16.                 catch(SQLException ex){}
  17. }
  18. */
  19.             public static void main(String[] args){
  20.                 BaseClass bc = new BaseClass();
  21.                 f(bc);
  22.                 DerivedClass1 dc = new DerivedClass1();
  23.                 f(bc);
  24.             }
  25. }

如果允许“异常接口“变宽,我们看看上面代码会出现什么结果。首先,我们可以将代码(1)的注释去掉,并注释掉代码(2)。由于BaseClass class中的被覆写f()函数没有声明异常规格,而代码(1)中覆写f()函数声明了,那么Test class中的f(BaseClass bc)虽然能处理被覆写f()函数的调用,但不能处理覆写f()函数的调用,因为代码覆写f()函数声明了异常规格,而f(BaseClass bc)没有进行捕捉。那么为了处理覆写f()函数,我们还要编写代码(3)那样的处理函数。
2.3    产生对象的异常规则
在产生一个对象时,捕捉的是产生对象时所调用的构造函数中所声明的异常。
2.4    函数调用时的异常规则
1)    当把一个对象向上转型为它的base class时,并通过转型后的reference进行函数调用时,我们要捕捉的是其base class的异常声明。
2)    当用对象的原始类型来调用函数时,只需捕捉所调用的覆写函数的异常
2.5    继承中的异常规则的一个实例
  1. import java.lang.Exception;
  2. class BaseException extends Exception {}
  3. class Derived1Exception extends BaseException {}
  4. class Derived2Exception extends BaseException {}
  5. class Derived11Exception extends Derived1Exception {}
  6. class BaseClass{
  7.     BaseClass() throws Derived1Exception {}
  8.     BaseClass(int i) throws BaseException {}
  9.     BaseClass(int i, int j) {}
  10.     //在覆写f()时不能声明异常规格
  11.     public void f() {}
  12. //在覆写g()时可以不声明异常或声明BaseException异常或声明
  13. //BaseException异常的子类
  14.     public void g() throws BaseException {}
  15.     //在覆写u()时可以不声明异常
  16.     public void u() throws Derived1Exception, Derived2Exception {}
  17. }
  18. class DerivedClass1 extends BaseClass{
  19.     //base class构造函数中声明了异常的处理方法
  20.     //声明与base class构造函数中的异常完全相同的异常
  21.     DerivedClass1(int i) throws Derived1Exception {}
  22.     //声明base class构造函数中的异常的父类异常
  23.     DerivedClass1() throws BaseException {}    
  24.     //声明base class构造函数中的异常和新的异常
  25.     DerivedClass1(String s) throws Derived1Exception,  Derived2Exception{}
  26.     //声明base class构造函数中的异常父类异常和新的异常
  27.     DerivedClass1(String s, int i) throws BaseException,  Derived2Exception{}
  28.     DerivedClass1(int i, int j) { super(i, j); }
  29.     //注意下面这两句
  30.     DerivedClass1(int i, String s) throws BaseException { super(i); }
  31.     //!DerivedClass1(int i, String s) throws Derived1Exception { super(i);}
  32.     public void f() {}
  33.     //下面覆写g()的几种方式
  34.     //不声明
  35.     //public void g() {}
  36.     //public void g() throws BaseException {} 声明完全相同
  37.     //声明子类异常
  38. public void g() throws Derived1Exception {}
  39. //声明子类异常
  40.     //public void g() throws Derived1Exception, Derived11Exception {}  
  41.     //下面覆写u()的几种方式
  42.     //public void u() {} 不声明
  43.     //public void u() throws Derived11Exception {} 声明部分异常的异常
  44.     //public void u() throws Derived1Exception {} 声明部分异常
  45.     //声明完全相同
  46. //public void u() throws Derived1Exception, Derived2Exception {}  
  47. //声明子类异常
  48.     //public void u() throws Derived1Exception, Derived11Exception {}  
  49. }
  50. public class Test{
  51.     public static void main(String[] args){
  52.         //捕捉的是相应的构造函数的异常
  53.         try{
  54.             BaseClass bc1 = new DerivedClass1();
  55.         }
  56.         catch(BaseException be) {}
  57.         try{
  58.             BaseClass bc2 = new DerivedClass1("bc2");
  59.         }
  60.         catch(Derived1Exception be1) {}
  61.         catch(Derived2Exception be2) {}
  62.         //通过向上转型来调用函数
  63.         BaseClass bc3 = new DerivedClass1(1, 1);
  64.         /*捕捉的是父类中被覆写的函数的异常,而这里捕捉的是子类中
  65.          * 被覆写的函数的异常,所以编译错误
  66.         try{
  67.             bc3.g();
  68.         }
  69.         catch(Derived1Exception be) {}
  70.         */
  71.         //捕捉了被覆写函数的异常,是正确的
  72.         try{
  73.             bc3.g();
  74.         }
  75.         catch(BaseException be) {}
  76.         //用对象的原始类型来调用函数
  77.         DerivedClass1 dc1 = new DerivedClass1(1, 1);
  78.         //只需捕捉所调用的覆写函数的异常
  79.         try{
  80.             dc1.g();
  81.         }
  82.         catch(Derived1Exception be) {}
  83.     }
  84. }


  --相关文章--
· J2EE全面介绍(二) (2007-04-13)
· 项目经验二则:读取war包中的文件及Ant使用中的OutOfMemoryError解决 (2007-04-13)
· 走向J2EE,漫长的道路 (2007-04-13)
· 步入J2EE架构和过程(2) (2007-04-13)
· 步入J2EE架构和过程(1) (2007-04-13)
· 方兴未艾的CORBA (2007-04-13)

版权所有©2005-2006 JAVA资源网 渝ICP备05007591号 虚拟主机 | 关于我们 | 联系方式 | 广告业务 | 网站地图 | 友情链接