下面程序段的輸出結(jié)果為()。publicclass Test{int a,b;Test(){a=100;b=200;}Test(intx,inty){a=X;
下面程序段的輸出結(jié)果為( )。 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(chǎn)=100b=200 a=12 b=45
B.a(chǎn)=12 b=45 a=100b=200
C.a(chǎn)=12 b=200 a=100b=45
D.a(chǎn)=100b=45 a=12 b=200
正確答案:B解析: 本題考查構(gòu)造方法及構(gòu)造方法重載。Test類有兩個(gè)構(gòu)造方法,即使用了方法重載技術(shù)。不帶參數(shù)的構(gòu)造方法對(duì)類的實(shí)例變量進(jìn)行特定數(shù)值的賦值,而帶參數(shù)的構(gòu)造方法根據(jù)參數(shù)對(duì)類的實(shí)例變量進(jìn)行賦值。TestObjl-newTest(12,45)語句調(diào)用的是 Test(intx,inty),而TestObj2=newTest()調(diào)用的是Test(),注意根據(jù)參數(shù)個(gè)數(shù)來區(qū)分。
詞條內(nèi)容僅供參考,如果您需要解決具體問題
(尤其在法律、醫(yī)學(xué)等領(lǐng)域),建議您咨詢相關(guān)領(lǐng)域?qū)I(yè)人士。