蚂蚁借呗|java常见异常机制( 二 )


at cast.main(Test01.java:90)
ArrayIndexOutOf数组索引超过Bounds界限Exception: 5 这里的5是array[5
的实参5  :冒号后面为异常的描述
*/
File f = new File(\"C:\\\\CheckedException.txt\");
// \"\\t\\\r\\'\\\"\\\\ \" 斜杠加字符 escape character转义字符 C:\\CheckedException.txt 改成C:/
f.createNewFile();
/*
Unhandled exception:java.io.IOException 在编译阶段产生的异常 checked exception 还没到run阶段就会报异常
未处理异常 创建文件就会报异常 需要包裹try catch来使用
*/
try {
f.createNewFile();
catch (IOException e) {
//抛出异常时catch io异常
throw new RuntimeException(e);
//抛出一个新的运行时异常



【蚂蚁借呗|java常见异常机制】