A股上市公司传智教育(股票代码 003032)旗下技术交流社区北京昌平校区

 找回密码
 加入黑马

QQ登录

只需一步,快速开始

© 呆呆呆 中级黑马   /  2013-12-13 23:15  /  1719 人查看  /  2 人回复  /   0 人收藏 转载请遵从CC协议 禁止商业使用本文

本帖最后由 呆呆呆 于 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>
复制代码
请问这段代码有什么错误?
求详解

评分

参与人数 1技术分 +1 收起 理由
简★零度 + 1

查看全部评分

2 个回复

倒序浏览
子类中就尽量不要抛出什么异常
回复 使用道具 举报
你的上面父类抛的异常是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");

         }

}

评分

参与人数 1技术分 +1 收起 理由
简★零度 + 1

查看全部评分

回复 使用道具 举报
您需要登录后才可以回帖 登录 | 加入黑马