题目内容:
下面程序段的输出结果为( )。 public class Test
{
int a,b;
Test()
{
a=100;
b=200:
}
Test(int X,int y)
{
a=x:
b=y;
}
public static void main(String args[])
{
Test Objl=new Test(12,45);
System.OUt.println("a="+Objl.a+"b="+Objl.
b);
Test Obj2=new Test();
System.out.println("fl="+Obj2.a+"b="+Obj2.
b);
}
} A.a=100 b=200a=12 b=45
B.a=12 b=45a=100 b=200
C.a=12 b=200 a=100 b=45
D.a=100 b=45 a=12 b=200
参考答案:【答案仅供学习,请勿对照自行用药等】
答案解析: