记住一点,除非是断电或其他外部原因或在try中用了System .exit(0),否则finally的语句都会被执行的
package com.heima;
public class SmallT {
public static void main(String args[])
{
SmallT t = new SmallT();
int b = t.get();
System.out.println(b);
}
@SuppressWarnings("finally")
public int get()
{
try
{
//return 1 ;
[color=Red]System.exit(0);[/color] }
finally
{
return 2 ;
}
}
} |