unhandled exception type Exception是什么意思?
1个回答
展开全部
请问是否是编译期出的问题,不是catch的问题这个错误是指:你有一个方法会抛出异常,但是你没有捕捉。程序改成如下就好了: public class Example8_4 {
public static void main(String[] args) {
try {
method();
} catch (Exception e) {
e.printStackTrace();
}
}
static void method()throws Exception {
try {
System.out.println("try:performed");
} finally {
System.out.println("finally:always performed");
}
}
}
public static void main(String[] args) {
try {
method();
} catch (Exception e) {
e.printStackTrace();
}
}
static void method()throws Exception {
try {
System.out.println("try:performed");
} finally {
System.out.println("finally:always performed");
}
}
}
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询