Java SE题目1
1、下面程序的输出结果为( B )public class Demo { public static String sRet = ""; public static void func(int i) { try { if (i%2==0) { throw new Exception(); //抛出异常进入catch,不抛不进 } } catch (Exception e) { sRet += "0"; retur







