开发者社区> 问答> 正文

Java里异常处理标准格式是什么呢?

已解决

Java里异常处理标准格式是什么呢?

展开
收起
gxx1 2022-04-03 17:48:23 1114 0
1 条回答
写回答
取消 提交回答
  • 推荐回答

    public static int div(int x,int y) throws Exception{

    int result = 0;
    

    System.out.println(“[开始]进行除法计算”);

    try {

    result = x / y; //此处有异常,后面不执行

    }catch (Exception e) {

    throw e; //抛出去
    

    } finally {

    System.out.println(“[结束]除法计算完毕”);

    }

    return result;

    }

    }

    public class TestDemo {

    public static void main(String args[]){
    
       try {
    
     System.out.println(MyMath.div(10,0));
    

    } catch(Exception e ){

    e.printStackTrace();

    }

    }

    }

    上述代码说明了就是使用一个代码调用出处理异常,也可以让程序员通过throw语句手动抛出异常。

    2022-04-03 17:53:44
    赞同 展开评论 打赏
问答排行榜
最热
最新

相关电子书

更多
Spring Cloud Alibaba - 重新定义 Java Cloud-Native 立即下载
The Reactive Cloud Native Arch 立即下载
JAVA开发手册1.5.0 立即下载