黑马程序员技术交流社区
标题:
大神快来~~~
[打印本页]
作者:
最好的我
时间:
2015-4-24 22:45
标题:
大神快来~~~
class Demo
{
public static void func()//throws Exception
{
try
{
throw new Exception();
}
finally
{
System.out.println("B");
}
}
public static void main(String[] args)
{
try
{
func();
System.out.println("A");
}
catch(Exception e)
{
System.out.println("C");
}
System.out.println("D");
}
}
作者:
shuizhuqing
时间:
2015-4-25 23:39
A输出前就已经抛异常了,所以不会输出A,应该是输出BCD
欢迎光临 黑马程序员技术交流社区 (http://bbs.itheima.com/)
黑马程序员IT技术论坛 X3.2