A股上市公司传智教育(股票代码 003032)旗下技术交流社区北京昌平校区

 找回密码
 加入黑马

QQ登录

只需一步,快速开始

A:异常处理的两种方式
        * a:try…catch…finally
                * try catch
                * try catch finally
                * try finally
        * b:throws
* B:try...catch处理异常的基本格式
        * try…catch…finally
* C:案例演示
        * try...catch的方式处理1个异常
  1. package com.heima.exception;

  2. public class Demo2_Exception {

  3.         /**               
  4.                 try:用来检测异常的
  5.                 catch:用来捕获异常的
  6.                 finally:释放资源
  7.                
  8.                 当通过trycatch将问题处理了,程序会继续执行
  9.          */
  10.         public static void main(String[] args) {
  11.                 Demo2 d = new Demo2();
  12.                 try{
  13.                         int x = d.div(10, 0);
  14.                         System.out.println(x);
  15.                 }catch(ArithmeticException a) {                //ArithmeticException a = new ArithmeticException();
  16.                         System.out.println("出错了,除数为零了");
  17.                 }
  18.                
  19.                 System.out.println("1111111111111111");
  20.         }

  21. }

  22. class Demo2 {
  23.         /*
  24.          * 除法运算
  25.          */
  26.         public int div(int a,int b) {                //a = 10,b = 0
  27.                 return a / b;                                        // 10 / 0  被除数是10,除数是0当除数是0的时候违背了算数运算法则,抛出异常
  28.                                                                                 //new ArithmeticException("/ by zero");
  29.         }
  30. }
复制代码

0 个回复

您需要登录后才可以回帖 登录 | 加入黑马