Java里这个throw可以不catch 吗?

我想请问一下 我在看代码的时候 看到方法只throw exception 但是上层再也没有处理了 为什么? 提前谢谢大家解答


final public class Interceptors {

    

    public Interceptors add(Interceptor globalActionInterceptor) {

        if (globalActionInterceptor == null) {

            throw new IllegalArgumentException("nterceptor can not be null.");

        }

        return this;

    }


慕丝7291255
浏览 1106回答 2
2回答

桃花长相依

去了解下RuntimeException

叮当猫咪

上层如果没有捕获,那就是throws抛出了
打开App,查看更多内容
随时随地看视频慕课网APP