【简答题】包装类(lang包)。写出以下程序的运行结果: public class Test { public static void main(String[] args) { Integer i = 16; int j = i; System.out.println(j); } 1、程序的运行结果是________ 2、执行Integer i = 16;的时候,Java内部做了________操作...
【简答题】写出以下程序的运行结果。 public class Inc{ public static void main(String argv[]){ Inc inc = new Inc(); int i =0; inc.fermin(i); i = i++; System.out.println(i); } void fermin(int i){ i++; } }