给出下列【代码】注释标注的代码的输出结果。 class AAA { static int m ; static { m = 888; } } public class E { public static void main(String args[]) { AAA a= null; System.out.printf("%d:%d",AAA.m,a.m); } }
主观题
给出下列【代码】注释标注的代码的输出结果。 class AAA { static int m ; static { m = 888; } } public class E { public static void main(String args[]) { AAA a= null; System.out.printf("%d:%d",AAA.m,a.m); } }