服务器之家

服务器之家 > 正文

Java异常 Exception类及其子类(实例讲解)

时间:2021-02-01 12:21     来源/作者:Advancing-Swift

C语言时用if...else...来控制异常Java语言所有的异常都可以用一个类来表示,不同类型的异常对应不同的子类异常,每个异常都对应一个异常类的对象。

Java异常处理通过5个关键字try、catch、finally、throw、throws进行管理。基本过程是用try包住要监视的语句,如果在try内出现异常,则异常会被抛出,catch中捕获抛出的异常并做处理,finally一定会完成未尽事宜。

练习:

?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
package com.swift;
 
public class Exception1
{
  public static void main(String args[]){
    System.out.println("=========计算开始=========");
    try{
      int i=Integer.parseInt(args[0]);
      int j=Integer.parseInt(args[1]);
      int temp=i/j;
      System.out.println("计算结果:"+ temp);
    }catch(ArithmeticException e){
      System.out.println("出现了数学异常 "+ e);
    }catch(ArrayIndexOutOfBoundsException e){
      System.out.println("出现了数组异常 "+ e);
    }catch(NumberFormatException e){
      System.out.println("出现了格式异常 "+ e);
    }catch(Exception e){
      System.out.println("其他异常 "+e);
    }finally{
      System.out.println("不管是否有异常,我都执行。");
    }
    System.out.println("=========计算结束=========");
  }
}

以上这篇Java异常 Exception类及其子类(实例讲解)就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持服务器之家。

原文链接:http://www.cnblogs.com/qingyundian/p/7804526.html

标签:

相关文章

热门资讯

2020微信伤感网名听哭了 让对方看到心疼的伤感网名大全
2020微信伤感网名听哭了 让对方看到心疼的伤感网名大全 2019-12-26
Intellij idea2020永久破解,亲测可用!!!
Intellij idea2020永久破解,亲测可用!!! 2020-07-29
背刺什么意思 网络词语背刺是什么梗
背刺什么意思 网络词语背刺是什么梗 2020-05-22
苹果12mini价格表官网报价 iPhone12mini全版本价格汇总
苹果12mini价格表官网报价 iPhone12mini全版本价格汇总 2020-11-13
yue是什么意思 网络流行语yue了是什么梗
yue是什么意思 网络流行语yue了是什么梗 2020-10-11
返回顶部