SCJP认证考试题库1_第1页
SCJP认证考试题库1_第2页
SCJP认证考试题库1_第3页
SCJP认证考试题库1_第4页
SCJP认证考试题库1_第5页
已阅读5页,还剩32页未读 继续免费阅读

下载本文档

版权说明:本文档由用户提供并上传,收益归属内容提供方,若内容存在侵权,请进行举报或认领

文档简介

•考试大纲

•第一部分:Java语言基础

•第二部分:流程控制

•第三部分;面向对象封装,维承,多态

•第四部分:异常处理

•第五部分:多线程

•第六部分:Java垃圾回收机制

,第七部分:JavaI/O

•第八部分:Java集合和泛型

•第九部分:JavaSE实用API

QUESTION1

Giventhecodeintheexhibit.

Whatistheresult?

importjava.io.*.;

13.publicclassForestimplementsSerializable(

14.privateTreetree=newTree();

15.publicstaticvoidmain(String[]args)(

16.For®«tf=newFor»$t();

17.by(

18.FileOutputStreamfs■newFileOutputStream(**Forest.Ser");

19.ObjectOutputStreamOS=newObjectOutputStream(fs);

20.os.wnteObject(f);OS.Close();

21}catch(Exceptionex){ex.PrintStackTrace();)

22

23..

24.classTree()

A.Compilationfails

B.Anexceptionisthrownatruntime.

C.AninstanceofForestisserialized.

D.AninstanceofForestandaninstanceofTreearebothserialized.

Answer:(B)

执行时期会抛出java.io.NotSerializableExcetpion异常。Tree必须实现Serialized接口:因为Forest

实现了序列化,并且引用了Tree,但是Tree没有实现序列化!!

当一个实现序列化的类在类体里调用另外一个类的时候,那么另外一个类也要实现序列化!如果没

有实现,则会报出运行时异常!!如果要实现序列化,他的成员变量也必须实现序列化.本题中Tree

没有实现序列化,所以会产生的运行异常!

参考大纲:IO操作一对象的序列化

序列化的过程就是对象写入字节流和从字节流中读取对象。见SCJP.ul.SerializableTest

QUESTION2

Whichcode,insertedatline14,willallowthisclasstocorrectlyserializedand

desterilized?

1

2laportjava10»;

3publicclassFooiMpleaentsSerializable{

4publicintx.y;..

5publicFoo(mtx.inty){this.x-this.y■y;}

6

7privatevoidvriteObject(ObjeetOutputStreaas)

8throwslOException{

9svritelnt(x).s.vritelnt(y).

10}

11

12privatevoidrcadObject(ObjectInputStreaMS)

13throwslOException.ClassNotFoundException(

14

15//insentcodehere

16)

17)

A.s.defaultReadObject();

B.this=s.defaultReadObject();

C.y=s.default();x=s.readlnt();

D.xInt();y=s.readlnt();

Answer:(D)

在反序列化方法中,从s对象中读取两个整数.序列化是写对象,反序列亿是读对象…

参考大纲:IO操作一对象的序列化

QUESTION3

Giventheexhibit.

11.Stringtest="Thisisatest",

12String[]tokens=testsplit(,s)

13.System.outpnntln(tokenslengyh).

Whatistheresult?

A.O

B.1

C.4

D.Compilationfails

E.Anexceptionisthrownatruntime

Answer:(D)产生illegalescapecharacter非法转意符的编译错误

split。字符切割器

本题是想用空格来分割字符串,只能用“”或者S”来分割,“\s”没有这个转意字符!所以会

报编译错误……

tab可以用可以用飞”表示.

String的split方法用来分割字符串,这个方法接受一个正则表达式,根据表达式来分割,“\\s”表

示空格,"\s”没有这个转意字符,所以会产illegalescapecharacter的编译错误。

参考大纲:实用API—String的split。方法和正则表达式

QUESTION4

Giventheexhibit:

12Datedate=newDate();

13.d£setLocale(Locallaly);

14Strings=dfFormat(date),

ThevariabledfisanobjectoftypeDateFormatthathasbeeninitializedinline11.

WhatistheresultifthiscodeisrunonDecember14,2000?

A.ThevalueofSis14-dic-2004

B.ThevalueofSisDec14,2000

C.Anexceptionisthrownatruntime

D.Compilationfailsbecauseofanerrorinline13.

Answer:(D)

DateFormat用来格式日期,它放在t包里,它没有.代码语法有问题,,编译错误!

参考大纲:实用API—包

QUESTION5

ThedoesFileExistmethodtakesanarrayofdirectorynamesrepresentingapath

fromtherootfilesystemandafilename.Themethodreturnstrueifthefileexists,

falseifdoesnot.

Placethecodefragmentsinpositiontocompletethismethod.

return耻gexistsj]|[Mumpathisfile4][Fie*.newFtefpathHenamel

|palh'newFtejpath匈||F-path■newteparatop.||path・path♦Heseparaof♦*"]

Answer:()

publicstaticbooleandoesFileExist(String(]directories.Stringfilename){

Stringpath=

fbr(Stringdir:directories){

path=path+Fileseparator+dir;

Filefile=newFile(path,filename);

returnfile.exists();

}

参考大纲:I。操作一File

QUESTION6

Given:

Syscem.out.printf("Piisapproximately%fandEisapproximately%b".Math.PI,Math.E);

Placethevalueswheretheywouldappearintheoutput.

Piisapproxmateiy|FMcentre"|

Answer:()

True-------判断E是否是NULL,NULL是FALSE否贝V是TRUE.

PrintfO是C中常用的语法;

%f表示浮点数(小数点后6位),

%b表示boolean,

%d表示整数.

%e十进制的科学计数法表示浮点数

%a16进制表示浮点型科学计数法的整数部分,以10进制表示指数

%0以8进制表示整数

%x以16进制表示整数

%s字符串个数输出

%cchar型格式输出,提供的值应为整数型

%t输出日期时间的前置????

参考大纲:实用API—Formatter格式化输出工具

QUESTION7

Whencomparingjava.io.BufferedWritertojava.io.FileWriter,whichcapability

existasamethodinonlyoneofthetwo?

A.closingthestream

B.flushingthestream

C.writingtothestream

D.markingalocationinthestream

Rwritingalineseparatortothestream

Answer:(E)

只有BufferedWriter具有newLine()方法;Reader才有mark功能。

参考大纲:I/O操作一BufferWriter和FileWriter

QUESTION8

Giventheexhibit:

Whichtwocodefragments,insertedindependentlyatline3,generatetheoutput

4247?(choosetwo)

1.publicclassCertkilef3(

2publicstaticvoidmain(String[]args)(

3//insertcodehere

5Systetnout.pnntln(s),

6)

7.)

A.Strings三”123456789”;

s.=(s-"123M).replace(1,3,H24M)-"89M;//String中只有表示连接,但是无

B.StringBuffers=newStringBuffer(n123456789");

s.delete(0,3).replace。,3,"24").delete(4,6);〃delete(0,3)表示从0下标开始删除到3下标以前

C.StringBuffers=newStringBuffer("123456789");

s.substring(3,6).delete(l,3).insert(1,"24").Substring。回传的是一个String而不是

StringBuffer,String没有delete方法,产生cannotfindsymbol的编译错误

D.StringBuilders=newStringBuilder("123456789");

s.substring(3,6)delete(1,2).insert(1,n24")错误同上

E.StringBuilders=newStringBuilder("123456789");

s.delete(0,3)replace。,3,'"').delete(2,5).insert(1,“24”)

Answer:(B,E)

A,String没有运算符;String不能修改!

B,正确4247

C,S.substring返回的是String,String没有delete()方法

D,S.substring返回的是String

E,正确4247

参考大纲:实用API—

Siring、StringBuffer线程安全的适用于多线程、StringBuilder线程不安全,适合单线程,但是性能

高.

StringBufferStringBuilder的用法一样

QUESTION9

Whichthreestatementsconcerninstheuseofthejava.io.Serialization

interfacearetrue?(choosethree)

A.Objectfromclassesthatuseaggregationcannotbeserialized.

B.AnobjectserializedononeJVMcanbesuccessfullydesterilizedonadifferentJVM.

C.ThevaluesinfieldswiththeVolatilemodifierwillNOTsurviveserializationand

deserialization

D.ThevaluesinfieldwiththetransientmodifierwillNOTsuniveserializationand

deserialization

E.ItislegaltoserializeanobjectofatypethathasasupertypethatdoesNOTimplement

java.io.Serialization

Answer:(B,D,E)

A错误,聚合中的对象实现了serializable就能被序列化一个类包含另外一个类就是聚合.A的

描述和对象是否支持序列化没有直接关系

B正确java是跨平台的,序列化的工作也统一交给各个平台的Jvm来处理

C错误,不是volatile而是transient;有这个transient瞬态关键字的话,就不能序列化了!

Volatile这个修饰符的变量,实现的和多线程同步的方法类似,但是不是很好用!

D正确transient瞬态的对象是不支持序列化的

E正确,只要子类实现serializable,不用考虑父类有无实现serializable

参考大纲:1O操作一对象的序列化

QUESTION10

Giventheexhibit:

12.publicclassCertkiler{

13.publicstaticvoidgo(shortn)(SysemoutpnntlnCshorr),)

14.publicstaticvoidgo(Shortft)(SysetnoutpnntlnCSHORT*);)

15.publicstaticvoidgo(Longn)(Sysem.out.prmtIn(MLONG");)

16.publicstaticvoidmain(String[]args)(

17.Shorty=6;

18.intz=7;

19.go(y);

20.go(z);

21.

22.

Whatistheresult?

A.shortLong

B.SHORTLONG

C.Compilationfails

D.Anexceptionisthrownatruntime

Answer:(C)向上就近原则.

第2。行的go(z)将会依序找gn(inti),gn(lnngl),gn(floatf),gn(dnnhled)或gc(Integeri)方法.但是并

不会自动向上转型Long然后再呼叫go(Longn),这种依顺序向上找的特性只会发生在对应端基本

资料型别的情况下,

参考大纲:面向对象一重载;实用API—自动封包、拆包

QUESTION11

Giventheexhibit:

*disvalid,non-nullDateobject

*dfisavalid,non-nullDatcFormatobjectsettothecurrentlocal

Whatoutputsthecurrentlocal'scountrynameandtheappropriateversionofD'sdate?

A.Localeloc=Locale.getLocal();

System.outprintin(loc.getDisplayCountry()

B.Localeloc=Locale.getDefault();

System.outprintin(loc.getDisplayCountry()+M"+df.format(d));

C.Localeloc=Locale.getLocal();

System.outprintin(loc.getDisplayCountry()+"*'+df.setDatcFormat(d));

D.Localeloc=Locale.getDefault();

System.outprintin(loc.getDisplayCountry()+"H+df.seDateFormat(d));

Answer:(B)

ALocale类没有getLocal。方法,编译错误

B正确

C错误Locale类没有getLocal()方法DateFormat没有setDateFormat()方法,编译错误

DDateFormat没有setDateFormat(访法编译错误

参考大纲:实用API—java.util包和java.text包

QUESTION12

Giventheexhibit:

1publicclassCertkfller3implementRunnabie(

2.publicvoidrun()(

3.system,out.print("running");

4)

5.publicstaticvoidmain(String']args){

6.Threadt=newThread(newCertMler3());

7.trun();

8.t.run();

9.t.start();

10.)

11-)

Whatistheresult?

A.Compilationfails.

B.Anexceptionisthrownatruntime

C.Thecodeexecutesandprints"running"

D.Thecodeexecutesandprints"runningrunning"

F.Thecodeexecutesandprints"ninninaninninigninning

Answer:(E)

()调用main主线程去执行2・4行的run(),就是一次普通的方法调用;t.start()表示起用thread

线程负责去执行2-4行的run();把2-4行的代码改为:

publicvoidrun(){

StringthreadName=Threa(l.currentThread().getName();

System.out.println(threadName+,,:runningM);

}

这样就可以看出是谁调用了run。了,显示如下:

main:running

main:running

Thread-o:running

参考大纲:多线程

QUESTION13-----------仔细看看

Exhibit:

1.publicclassThreadsl{

2.intx-0.

3publicclassRunneriMplenentsRunnable

<

4publicvoidrim(){

5.intcurrent■0;

6for(inti•0.i<4;iw){

current•x:

8Syste*outprint(current♦I");

9x■current+2:

10.>

11.}

12}

13.

14publicstaticvoidMam(Stnng[]arss){

15newThreadsl()go();

161

17

18publicvoid90(){

19Runnablerl■newRunner().

20newThread(rl).start();

21newThread(rl).start();

22}

23}

Whichtwoarepossibleresults?(choosetwo)

A.0,2,4,4,6,8,10,6,

B.0,2,468,10,2,4,

C.0,246,8,10,12,14,

D.0,022,4,4,6,6,8,8,10,10,12,12,14,14、

E.0,2,4,6,8,10,12,14,0,2,4,6,8,10,12,14,

Answer:(A,C)

A第一个线程循环到第三遍使得x等于4,并执行完第8句后挂起(此时current也是4);第二

个线程开始执行,执行完以后第一个线程接着执行最后一次循环,打印6

C两个线程依次执行

参考大纲:多线程

QUESTION14

Giventheexhibit:

7voidwaitForSignal()(

6.objectobj=newObject();

7.synchronized(ThreadcurrentThread())(

8.obj.wait();

9.objnotify();

10.)

11}

Whichstatementistrue?

A.ThiscodemaythrowanInterruptedException

B.ThiscodemaythrowanIllegalStateExcepion

C.ThiscodemaythrowaTimeOutExceptionaftertenminutes

D.Thiscodewillnotcompileunless"obj.wail()\"isreplacedwith"((Thread)obj).wail()"

E.Reversingtheorderofobj.wait()andobj.notify()mayveausethismethodtocompletenormally

Answer:(A)

首先编译通不过,

第5行:voidwaitForSignal()throwsInterruptedException{........}

第6行:Objectobj=newObject();

obj=Thread.currentThread();

第7行应该是:synchronized(obj);

---在写wait。和notify。方法时,除了要写在synchronized区段,•还需要撰写InteiruptedException

异常的try・catch.本题就算写了try・catch,也可能会在执行的时候产生currentthreadnotowner

的IllegalMonitorStateException的异常.

参考大纲:多线程一同步处理

QUESTION15

Giventheexhibit:

1publicclassTestOneimplementsRunnable(

2.publicstaticvoidmain(String[]args)throwsException(

3.Threadt=newThread(newTestOne()).

4.tstart(),

5System.out.print("Started');

6t.jom(%

7.System.out.print(MCoirpleteM),

8)

9.publicvoidrun()(

10.for(intI=0;I<4;i++)(

11.Systemoutprint(i);

12.)

13.}

14.)

Whatcanbearesult?

A.Compilationfails

B.Anexceptionisthrownatruntime

C.Thecodeexecutesandprints"StartcdComplctc"

D.Thecodeexecutesandprints"StartedComplete0123"

E.Thecodeexecutesandprints"StartedO123Complete"

Answer:(E)

Join()方法使得某个线程加入到正在执行的线程(本题是main线程)中,执行完该线程才继续

执行main线程.本程序中第5行由main线程执行,6行因为下达了join。,所以mian的执行将被暂

停,等t做完nin()方法的全部工作之后,才论到main继续执行未完成的工作!

参考大纲:多线程

QUESTION16

WhichtwocodefragmentswillexecutethemethoddoStuff()inaseparatethread?

(choosetwo)

A.newThread(){

publicvoidrun(){doStuff();}

};

B.newThread(){

publicvoidstart(){doStuff();}

}:

C.newThread(){

publicvoidrun(){doStuff();)

}.run();

D.newThread(){

publicvoidrun(){doStuff();}

)start();

E.newThread(newRunable(){

publicvoidrun(){doStuff();}

})-run();

EnewThread(newRunnable(){

publicvoidrun(){doStuff();}

}).start();

Answer:(D^F)

D匿名类别中复写run方法,并调用start。方法启动线程

F利用匿名实现runnable接口中的run方法,并调用start。启动线程

参考大纲:多线程

QUESTION17

Whichthreewillcompileandrunwithoutexception?(choosethree)

A.privatesynchronizedobjecto;

R.voidgo(){

synchronized(){/*codehere*/)

I

C.publicsynchronizedvoidgo(){/*codehere*/}

D.privatesynchronized(this)voidgo(){/*codehere*/}

E.voidgo(){

synchronized(Object.class){/*codehere*/}

)

F.voidgo(){

synchronized(o){/*codehere*/}

Answer:(C,E,F)

A错误synchronized不可以成为属性/变量的修饰符

B错误synchronized()中的括号中要加入欲锁定的物件或类型〃

synchronized(this)

C正确利用synchronized来修饰对象instance方法,锁定的物件将会是this,

D错误修饰方法时,this不用特别在synchronized()中指明

E正确合法的classliteralssynchronized//针对某个类同步

F正确合法的instanceblocksynchronized〃针对某个对象同步

参考大纲:多线程一线程同步

QUESTION18

Exhibit:

classComputationextendsThread{

3

4privateintnua;

5privatebooleanisCoapIete.

6privateintresult

7

8publicCoMDUtationCintnum){this.nun■nua;}

9

10publicsynchronizedvoidrun(){

11result■nun*2;

12isComplete■true;

13notify().

14

15

16publicsynchronizedintgetResult(){

17while(IisCo*plete){

18try{

19wait();

2-}catch(InterruptedExceptione){}

0

21)

22returnresult

23)

24

2sDublicstaticvoidmain(Stringf1ar«s){

26Computation[]computations=newComoutation[4];

27for(inti■0,i<computations.length;i++){

28computations[1]«nevComputation(i).

29computations[i].start();

30)

31for(Coaputationc:computations)

Systemoutprint(c.getResult()+'");

}

33.}

Whatistheresult?

A.Thecodewilldeadlock

B.Thecodemayrunwithnooutput

C.Anexceptionisthrownatruntime

D.Thecodemayrunwithoutput"06"

E.Thecodemayrunwithoutput,'2064"

F.Thecodemayrunwithoutput"0246"

Answer:(F)

情况1run方法运行以后运行再调用getResult();

情况2先调用getResult。,挂起,等待run。方法修改isComplete的值

线程0,线程1,线程2,线程3,main共有5个线程,中间线程执行的顺序如上面所说的,但是最后

的结果是main的for(Computationc:computations)决定的,所以结果总是0246

参考大纲:多线程

QUESTION19

Giventheexhibit:

PublicclassCertkiller(

1.publicsta:icvoidmain(String[]args)throwsException(

2.Thread,sleep(3000);

3.Systemout.ptintln「sleep");

4.)

5)

Whatistheresult?

A.Compilationfails

B.Anexceptionisthrownatruntime

C.Thecodeexecutesnormallyandprints"sleep”

D.Thecodeexecutesnormally,butnothingisprinted.

Answer:(C)执行2行的时候main被放到Blocked中,过3秒后才会回到Runnablepool中,继续

执行输出“sleep”

参考大纲:多线程

QUESTION20

Whichtwostatementsaretrueabouthas-aandis-arelationships?(choosetwo)

A.Inheritancerepresentsanis-arelationship

B.Inheritancerepresentsahas-arelationship

C.Interfacesmustbeusedwhencreatingahas-arelationship

D.Instancevariablescanbeusedwhencreatingahas-arelationship

Answer:(A,D)

Is・a:继承classAextendsB{}is-a”是一个“,属于上下的关系,

Has・a:聚合classA{Bb;}has-a“有一个”属于聚合的关系,在java中用来表示类

中的成员变量

参考大纲:面向对象

QUESTION21

Giventheexhibit:

1packagecertkiler

2.

3.classTarget(

4publicStringname="hello”

5.)

Whatcandirectlyaccessandchangethevalueofthevariablename?

A.anyclass

B.onlytheTargetclass

C.anyclassintheCertkillerpackage

D.anyclassthatextendsTarget

Answer:(C)

要修改name,必须先取得Target的对象,Target的存取权限是default,因此同一个包才能访问。

参考大纲:面向对象一package与import

QUESTION22

Whichthreestatementsaretrue?(choosethree)

A.AfinalmethodinclassXcanbeabstractifandonlyifXisabstract

B.AprotectedmethodinclassXcanbeoverriddenbyanysubclassofX.

C.AprivatestaticmethodcanbecalledonlywithinotherstaticmethodsinclassX.

D.Anon-staticpublicfinalmethodinclassXcanbeoverriddeninanysubclassofX.

E.ApublicstaticmethodinclassXcanbecalledbyasubclassofXwithoutexplicitly

referencingtheclassX.

F.AmethodwiththesamesignatureasaprivatefinalmethodinclassXcanbe

implementedinasubclassofX.

Answer:(B,E,F)

A错误抽象方法必须被实现,因此是不能加final修饰符的

B正确子类可以合法的复写父类的protected权限的方法

C错误privatestatic方法在X类中的方法都可以调用,static和non-static都可以

D错误final方法不可以复写,除非是private方法.但是这种情况不叫改写,而是子类有和父类一样

的privatefinal方法,两个方法是各自独立的!!!!

E正确不用加上父类别的引用,子类就可以直接调用父类的static方法

F正确父类的privatestatic方法和子类中同名privatestatic方法是两个独立方法,这种情况就不叫

改写,而是各自拥有自己的方法!

参考大纲:面向对象

QUESTION23

PlacetheTypesinoneoftheTypecolumns,andtheRelationshipsinthe

Relationshipcolumn,todefineappropriatehas-aandis-arelationships.

TypeRelationshipTypeRelationshipsTypes

Placehere|PUcehe(eAnimal电-a

ForestPhceherePlacehetehas-a

RectanglePhceherePtecehete

PlaceherePbcehereProgrammingBook

Answer:()

Dogis-aAnimal是一类

Foresthas-aTree有一个

Rectanglehas-aSquare矩形有一个正方形

JavaRookis-aProgrammingRook是一个

参考大纲:面向对象

QUESTION24

ReplacetwooftheModifiersthatappearintheSingleclasstomakethecodecompile.

Note:Threemodifierswillnotbeusedandfourmodifiersinthecodewillremain

unchanged.

Code

publicclassSingle{Modifiers

IprmtaI[mtie|Singleinstance.IfinalI

jpublic""!ISingleget:nstance(){[proiectm]

it(instance■null)instance•create().Iprivate"]

returninstanceIabstraeTl

>

[privateISingle(I()Istatic~~|

[protected]Singlecreate(>{returnnewSingle

}

classSingleSubextendsSingle(

)

Answer:()

publicclassSingle)

privatestaticSingleinstance;

publicstaticSinglegetlnstance(){

if(instance==null)instatnee=create();

returninstance;

)

protectedSingle()(}因为SingleSub继承了Single,所以Single的构造器必须可以让子类访问

到!!!!

staticSingleCrcatc(){returnnewSingle();}因为第4行…二create。;说明这个方法必须是

static的方法

)

参考大纲:static成员和继承时方法的权限控制

QUESTION25

Exhibit:

publicclassSiapleCalc{

publicintvalue;

publicvoidcalculate(){value+■7.}

DublicclassMultiCalcextendsSijftpleCalc{

publicvoidcalculate(){value--3.}

publicvoidcalculate(intMultiplier){

colculate(),

super.calculate();

value»■multiplier;

publicstaticvoidmain(String[]args){

MultiCalccalculator■newMultiCalcC);

calculator.calculate(2);

Systemoutprintln("Valueis:"+calculatorvalue).

}

Whatistheresult?

A.Valueis:8

B.Compilationfails.

C.Valueis:12

D.Valueis;-12

E.Thecoderunswithnooutput

F.Anexceptionisthrownatruntime.

Answer:(A)

2行,value默认是=0;9行实例化一个MultiCalc对象,并传了一个参数multiplicr=2,10行调用3行

的方法;方法内的calculate。又调用2行,结果value=0・3;然后super.calculate()调用父类的

calculate。,value=-3+7=4;然后6行,value=value*multiplier=4*2=8;然后到11行,输出valueis:8

参考大纲:面向对象

QUESTION26

Giventheexhibit:

20.publicclassCertkillerCard{

21.

22privateStringcardID

23.privateIntcgrlimit,

24publicStringownerName;

25.

26publicvoidsetCardlnfbrmaiion(StringcardID,

27.StringownerName,

28.Integerlimit)(

29.this.cardlD=cardID,

30.Uns.owncrNanic■,ownerNamc,

31.this.limit=limit;

32)

33.)

Whichstatementistrue?

A.Theclassisfullyencapsulated

R.Thecodedemonstratespolymorphism.

C.TheownerNamevariablebreaksencapsulation

D.TheCardIDandlimitvariablesbreakpolymorphism

E.ThesetCardlnformationmethodbreaksencapsulation

Answer:(C)

第24行破坏了封装,应该成privateStringownerName;

参考大纲:面向对象一封装

QUESTION27

Giventheexhibit:

11classAnimal(publicStringnoise()(return"peep"))

12classDogextendsAnimal{

13.publicStringnoise()(return"back”;)

14.)

15.classCatex^ndsAnimal(

16.publicStringnoise()(return"move";)

17)

30.Animalanimal=newDog();

31.Catcat=(Cat)animal,

32.System.out.printin(Cat.Noise()),

Whatistheresult?

A.peep

B.bark

C.move

D.Compilationfails.

E.Anexceptionisthrownatruntime

Answer:(E)

31行运行时发生造型异常,运行时错误!!30行后Animal的实体是dog,31行有转型到cal是不对的(兄

弟类之间不能转换)!编译是没有错误是因为dog和cat有共同的父类,

参考大纲:面向对象一多态

QUESTION28------------概念

Exhibit:

1

2publicclassCar{

3privateintvheelCount;

4privateStringvia;

5publicCar(Stringvin){

6thisvin=vin:

7}thiswheelCount=4;

0

0publicStringextendf){

9

10return"zoom"zoom".

1}

12publicString9etlnfo(){

13return-VIN*♦vin+-wheels-"+vheelCount.

4}••

}

And:

1publicclassMeGoextendsCar{

2.publicMeGo(Stringvin){

3.this.wheelCount-3;

41

5}

Whattwomusttheprogrammerdotocorrectthecompilationerrors?

A.insertacalltothis()intheCarconstructor

B.insertacalltothis()intheMeGoconstructor

C.insertacalltosuper()intheMeGoconstructor

D.insertacalltosuper(vin)intheMeGoconstructor

E.changethewheelCountvariableinCARTOPROTECTED

F.CHANGELINE3INTHEMeGoclasstosupcr.whcelCount=3;

Answer:(D、E)

D父类无默认构造函数,子类需显示调用父类的构造函数利用super(参数)来调用父类的构造函数

EwheelCount为私有变量,子类无法访问,改成default,publicprotected韶可以,本题改成protected

比较合适

2行改为protectedintwheelCount;

And2行和3行之间插入super(vin);

参考大纲:面向对象

QUESTION29................多态

Giventheexhibit:

10interfaceA{publicintgtValue();}

11classBimplementsA(

12.publicintgotValue(){return1;)

13)

14classCextendsB(

15.//insertcodehere

16.)

Whatthreecodefragmentsinsertedindixiduallyatline15,makeuseof

polymorphism?(choosethree)

A.publicvoidadd(Cc){c.getValue();}

R.publicvoidadd(Rh){h.getValne();}

C.publicvoidadd(Aa){a.gelValue();}

D.publicvoidadd(Aa,Bb){a.getValue();}

E.publicvoidadd(Ccl,Cc2){cl.getValue();}

Answer:(B,C,D)

AE只是简单的使用C的方法

多态必须存在继承

参考大纲:面向对象一多态

QUESTION30

Giventheexhibit:

11certkiller=newReailyBigObject();

12.//morecodehere

13certkiltef=null;

14./*insertcodehere*/

Whichstatementshouldbeplacedatline14tosuggestthatthevirtualmachine

expendefforttowardrecyclingthememoryusedbytheobjectCertkiller?

A.System.gc()

B.Runtime.Gc()

C.System.freeMemory()

D.Runtime.getRuntime().growHeap()

E.Runtime.getRuntime().freeMemory()

Answer:(A)

建议JVM进行资源回收的方法:

System.gcO;

Runtime.getRuntimeO.gcO;

参考大纲:面向对象一垃圾回收机制

QUESTION31

Exhibit:

10classFoo{

1112privateintx,

13publicFoo(mtx){thisx=x;}

14publicvoidsetX(intx){thisx■x.}

15publicintgetX(){returnx,}

16}

17

18publicclasssubmit{

19staticFoofooBar(Foofoo){

20foo■newFoo(100);

21returnfoo

22}

温馨提示

  • 1. 本站所有资源如无特殊说明,都需要本地电脑安装OFFICE2007和PDF阅读器。图纸软件为CAD,CAXA,PROE,UG,SolidWorks等.压缩文件请下载最新的WinRAR软件解压。
  • 2. 本站的文档不包含任何第三方提供的附件图纸等,如果需要附件,请联系上传者。文件的所有权益归上传用户所有。
  • 3. 本站RAR压缩包中若带图纸,网页内容里面会有图纸预览,若没有图纸预览就没有图纸。
  • 4. 未经权益所有人同意不得将文件中的内容挪作商业或盈利用途。
  • 5. 人人文库网仅提供信息存储空间,仅对用户上传内容的表现方式做保护处理,对用户上传分享的文档内容本身不做任何修改或编辑,并不能对任何下载内容负责。
  • 6. 下载文件中如有侵权或不适当内容,请与我们联系,我们立即纠正。
  • 7. 本站不保证下载资源的准确性、安全性和完整性, 同时也不承担用户因使用这些下载资源对自己和他人造成任何形式的伤害或损失。

评论

0/150

提交评论