java 基础

关于 try 和 finally 中的 return 首先我们来看一段代码: public class Test { public static int inc() { int x = 1; try { return ++x; // 1* } catch (Exception e) { } finally { x++; } return x; } public static void main(String[] args) { System.out.println(inc()); } } 它的输出结果是多少呢