其他分享
首页 > 其他分享> > 异常处理

异常处理

作者:互联网

什么是异常机制

简单分类

异常处理机制(快捷键:Ctrl+Alt+t选择try+catch+finally)

自定义异常

package com.exception.Demo02;

import com.exception.Demo02.Demo02;

public class Test {
    //可能会存在异常的方法
    static void test(int a) throws Demo02 {
        System.out.println("传递的参数为: "+a);
        if (a > 10){
            throw new Demo02(a);
        }
        System.out.println("ok");
    }

    public static void main(String[] args) {
        try {
            test(11);
        } catch (Demo02 demo02) {
            System.out.println("MyException=>" +demo02);
        }

    }
}

实际应用中的经验总结

标签:处理,try,Demo02,int,catch,异常,public
来源: https://www.cnblogs.com/hly777/p/15626287.html