黑马程序员技术交流社区
标题:
异常问题
[打印本页]
作者:
呆呆呆
时间:
2013-12-13 23:15
标题:
异常问题
本帖最后由 呆呆呆 于 2013-12-14 10:59 编辑
<P>public class SuperClass </P>
<P>{
02 public void start() throws IOException</P>
<P>{
03 throw new IOException("Not able to open file");
04 }
05 }
06
07 public class SubClass extends SuperClass</P>
<P>{
08 public void start() throws Exception</P>
<P>{</P>
<P>
09 throw new Exception("Not able to start");
10 }
11 }
</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