码迷,mamicode.com
首页 > 其他好文 > 详细

异常处理try...catch

时间:2018-05-16 00:36:26      阅读:187      评论:0      收藏:0      [点我收藏+]

标签:ret   catch   one   try   rgs   none   方式   main   turn   

package com.day16.Exception;
/*
* 异常处理的两种方式
* 1.try...catch...finally
* *try catch
* *try catch finally
* *try finally
* 2.throws
* try:用来检测异常的
* catch:用来捕获异常的
* finally:释放资源
*/

public class ExceptionOne {

  public static void main(String[] args) {
    Demo d=new Demo();
    try {
      int x=d.div(10,0);
      System.out.println(x);
    }catch(ArithmeticException a) {//相当于ArithmeticException a=new ArithmeticException();
      System.out.println("除数为0了");//除数为0了
  }
  System.out.println("Kobe");//Kobe
  }

}
class Demo{
  public int div(int a,int b) {
    return a/b;
  }
}

异常处理try...catch

标签:ret   catch   one   try   rgs   none   方式   main   turn   

原文地址:https://www.cnblogs.com/zhujialei123/p/9043484.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!