throw exception 2 ?

来源:13-12 完善登录注册校验功能

慕神4535282

2020-10-23

老师,下午好,再请教一个问题,我看ImageIO.java的源码,代码如下,

public static boolean write(RenderedImage im,
                                String formatName,
                                File output) throws IOException {
        if (output == null) {
            throw new IllegalArgumentException("output == null!");
        }
        ImageOutputStream stream = null;

        ImageWriter writer = getWriter(im, formatName);
        if (writer == null) {
            /* Do not make changes in the file system if we have
             * no appropriate writer.
             */
            return false;
        }

        try {
            output.delete();
            stream = createImageOutputStream(output);
        } catch (IOException e) {
            throw new IIOException("Can't create output stream!", e);
        }

        try {
            return doWrite(im, writer, stream);
        } finally {
            stream.close();
        }
    }

我查了一下, IIOException 是 IOException 的子类 ,但 IllegalArgumentException 却不是,那 throws IOException 这样写的意义是什么,IllegalArgumentException 异常不对外抛出了吗?

谢谢老师解答!

写回答

1回答

甲蛙

2020-10-26

IllegalArgumentException是继承RuntimeException,所有继承RuntimeException的都可以不用写throws,程序会往外层抛

0
1
慕神4535282
非常感谢!
2020-10-26
共1条回复

Spring Cloud+ Vue前后端分离开发企业级在线视频系统

全网稀缺课程 市场热门项目+主流框架 一课掌握前后端技术

1743 学习 · 1698 问题

查看课程