黑马程序员技术交流社区
标题:
管道流问题,
[打印本页]
作者:
天方地圆
时间:
2014-3-25 15:48
标题:
管道流问题,
本帖最后由 天方地圆 于 2014-3-26 11:50 编辑
class Write implements Runnable
{
private PipedOutputStream out;
Write( PipedOutputStream out)
{
this.out = out;
}
public void run()
{
try
{
Thread.sleep(6000);
out.write("pied lai la ".getBytes());
out.close();
}
catch (IOException e)
{
throw new RuntimeException("管道输出流失败");
}
}
}
复制代码
Thread.sleep(6000); 这一行运行 报出错误: 错误: 未报告的异常错误InterruptedException; 必须对其进行捕捉或声明以便抛出?怎么回事。
作者:
疯狂沙漠
时间:
2014-3-25 16:06
Thread.sleep(6000);其方法是
public static void sleep(long millis) throws InterruptedException,已经声明了异常,所以外部在调用它的时候,需要捕捉异常,所以需要这样捕捉下
try {
Thread.sleep(1000);
} catch (InterruptedException e) {
e.printStackTrace();
}
复制代码
欢迎光临 黑马程序员技术交流社区 (http://bbs.itheima.com/)
黑马程序员IT技术论坛 X3.2