Chọn phát biểu đúng cho chương trình sau: class HasStatic { private static int x = 100; public static void main(String[] args) { HasStatic hs1 = new HasStatic(); hs1.x++; HasStatic hs2 = new HasStatic(); hs2.x++; hs1 = new HasStatic(); hs1.x++; HasStatic.x++; System.out.println("x = " + x); } }
Hãy cho biết kết xuất của đoạn chương trình sau : public class S1 { public static void main(String[] args) { new S2(); } S1() { System.out.print("S1"); } } class S2 extends S1 { S2() { System.out.print("S2"); } }