编写类ExceptionTest2
定义两个方法:go()和main()在go方法中声明要抛出异常,在该方法体内,抛出一个Exception对象在main()方法中,调用go方法,使用try/catch捕获...
定义两个方法:go()和main()
在go方法中声明要抛出异常,在该方法体内,抛出一个Exception对象
在main()方法中,调用go方法,使用try/catch捕获go方法中抛出的异常 展开
在go方法中声明要抛出异常,在该方法体内,抛出一个Exception对象
在main()方法中,调用go方法,使用try/catch捕获go方法中抛出的异常 展开
展开全部
public class Test {
public static void main(String[] args) {
try {
new Test().go();
} catch (Exception e) {
e.printStackTrace();
}
}
void go() throws Exception{
new Exception("this is a Exception!");
}
}
public static void main(String[] args) {
try {
new Test().go();
} catch (Exception e) {
e.printStackTrace();
}
}
void go() throws Exception{
new Exception("this is a Exception!");
}
}
本回答被提问者采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询