异常的处理:
try{异常代码} catch{异常的类型} finally{无论如何最终都会处理}
try{异常代码}catch(异常处理的类型 e){异常处理的类型}
throws 异常类型的抛出用在方法前面
package com.nt.exception; public class Exception1 { public static void main(String[] args) { // 如果异常会进行跳过,如果不异常会不进行处理 try{ System.out.println(10 / 2); System.out.println(10 / 0); }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); } }