常见异常:
ArithmeticExecption 算数异常
NullPointerException 空指针异常
ClassCastException 类型转换异常
NumberFormatException 字符串转换为数字异常
inputMisMatchException 输入类型不匹配
抓捕异常:try-catch-finally
try{
可能产生的异常的代码区
}carch(异常类型){
捕获并处理try抛出的异常类型
}finally{
无论异常是否发生,异常是否处理,finally都会执行
}
抛出异常:throw,throws
throw new ExceptionType
Public void methodName() throws Exception1,Exception1...{
}
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)