异常处理Exception01,try......catch{}
Posted SmallCuteMonkey
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了异常处理Exception01,try......catch{}相关的知识,希望对你有一定的参考价值。
异常的处理:
try{异常代码} catch{异常的类型} finally{无论如何最终都会处理}
try{异常代码}catch(异常处理的类型 e){异常处理的类型}
throws 异常类型的抛出用在方法前面
注意:可以知道如果出现相关的异常会执行catch语句,没有出现不会执行,try里面如果出现了异常就会终止执行下面的语句
package com.nt.exception;
public class Exception1 {
public static void main(String[] args) {
// 如果异常会进行跳过,如果不异常会不进行处理
try{
System.out.println(10 / 2);
System.out.println(10 / 0);
System.out.println(3);
}catch (ArithmeticException e){
System.out.println("处理数学异常");
}
try{
System.out.println(1);
System.out.println(10 / 5);
System.out.println(3);
}catch(Exception e){
System.out.println(4);
}finally{
System.out.println(5);
}
System.out.println(6);
}
}
以上是关于异常处理Exception01,try......catch{}的主要内容,如果未能解决你的问题,请参考以下文章