- public class Test {
- /**
- * @param args add by zxx ,Dec 9, 2008
- */
- public static void main(String[] args) {
- // TODO Auto-generated method stub
- System.out.println(new Test().test());;
- }
- static int test()
- {
- int x = 1;
- try
- {
- return x;//这里才是return回去的值.所以是1
- }
- finally
- {
- ++x;//这里是一定执行的x=2了..但是没return
- }
- }
-
- }
- 为什么结果是1
复制代码 |