Java-捕获异常e

时间:2018-11-12 22:53:23

标签: java exception try-catch

e在以下代码中是什么意思?

try {
    // Do something
} catch (Exception e) {
    // Do something
}

我一直在研究,一无所获。

System.out.println("Thanks!");

2 个答案:

答案 0 :(得分:5)

这是一个变量名。 Exception是类型。名称为e。您可以使用其他名称。您可能会向用户显示一条消息(或堆栈跟踪)。

try {
    // Do something
} catch (Exception ohNo) {
    System.out.printf("Caught exception %s doing something.%n", ohNo.toString());
    ohNo.printStackTrace();
}

答案 1 :(得分:0)

这是一个对象,其中包含有关发生的错误的信息。 从throwable继承,并向您清楚说明代码为什么出错

更多信息

enter link description here

enter link description here