黑马程序员技术交流社区

标题: 异常问题 [打印本页]

作者: 呆呆呆    时间: 2013-12-13 23:15
标题: 异常问题
本帖最后由 呆呆呆 于 2013-12-14 10:59 编辑

  1. <P>public class SuperClass </P>
  2. <P>{

  3. 02 public void start() throws IOException</P>
  4. <P>{

  5. 03 throw new IOException("Not able to open file");

  6. 04 }

  7. 05 }

  8. 06

  9. 07 public class SubClass extends SuperClass</P>
  10. <P>{

  11. 08 public void start() throws Exception</P>
  12. <P>{</P>
  13. <P>
  14. 09 throw new Exception("Not able to start");

  15. 10 }

  16. 11 }
  17. </P>
复制代码
请问这段代码有什么错误?
求详解
作者: 小斥候    时间: 2013-12-13 23:26
子类中就尽量不要抛出什么异常
作者: 还记得梦想吗    时间: 2013-12-14 02:11
你的上面父类抛的异常是IOException  而子类抛得异常是Exception 这样不行。。要么在上面加Exception
import java.io.IOException;


public class SuperClass
{

public void start() throws IOException,Exception
{

        throw new IOException("Not able to open file");

}

}



class SubClass extends SuperClass
{

         public void start() throws Exception
         {

                 throw new IOException("Not able to start");

         }

}


要么如下代码  都抛IOException

import java.io.IOException;


public class SuperClass
{

public void start() throws IOException
{

        throw new IOException("Not able to open file");

}

}



class SubClass extends SuperClass
{

         public void start() throws IOException
         {

                 throw new IOException("Not able to start");

         }

}




欢迎光临 黑马程序员技术交流社区 (http://bbs.itheima.com/) 黑马程序员IT技术论坛 X3.2