下面程序段的输出结果为( )。 publicclass Test int a,b; Test() a=100; b=200; Test(intx,inty) a=X; b=y; publicstaticvoidmain(Stringargs[]) TestObj1=newTest(12,45); System.out.println( a= +Obj1.a+ b= +Obj1.b); TestObj2=newTest(); System.out.println( a= +Obj2.a+ b= +Obj2.b);
A.a=100b=200
a=12 b=45
B.a=12 b=45
a=100b=200
C.a=12 b=200
a=100b=45
D.a=100b=45
a=12 b=200