Day08_异常机制
异常(exception)
程序运行中出现的不期而至的各种状况。如:文件找不到、网络连接失败、非法参数等。
抛出异常
捕获异常
异常处理关键字:try、catch、finally、throw、throws
public class Test{
public static void main(String[] args){
try{
//try 监控区域
}catch( ){
//捕获异常
}finally{
//处理善后工作
}
}
}