- <P>class ExceptionDemo
- {
- public static void main(String[] args)
- {
- Demo d = new Demo();</P>
- <P> try
- {
- int x = d.div(4,-1);
- System.out.println("x="+x);
- return;//<FONT color=red>在try代码快里面加入一个return语句</FONT>
- </P>
- <P> }
- catch (FuShuException e)
- {
- System.out.println(e.toString());
- return;
- }
- finally
- {
- System.out.println("finally");
- }</P>
- <P>
- System.out.println("over");
- }
- }</P>
复制代码 在try代码块里加入return语句,finally代码块里的语句还会执行吗?什么时候执行?在return语句之前还是之后?
|