下面程序段的输出结果为 public class Test { int a, b; Test() { a=100; b=200; } Test(int x,int y

admin2013-03-01  42

问题 下面程序段的输出结果为    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 Obj1=new Test(12,45);      System.out.println("a=+Obj1.a+" b="+Obj1.B) ;      Test Obj2=new Test();      System.out.println("="+Obja+"  b="+ObjB) ;     }    }

选项 A、a=100  b=200   a=12   b=45
B、a=12   b=45   a=100  b=200
C、a=12   b=200   a=100  b=45
D、a=100  b=45   a=12   b=200

答案2

解析 本题考查构造方法及构造方法重载。Test类有两个构造方法,即使用了方法重载技术。不带参数的构造方法对类的实例变量进行特定数值的赋值,而带参数的构造方法根据参数对类的实例变量进行赋值。TestObj1=new Test(12,45)语句调用的是Test(int x,int y),而Test Obj2=new Test渊用的是Test(),注意根据参数个数来区分。
转载请注明原文地址:https://jikaoti.com/ti/Aw80FFFM
0

最新回复(0)