此题为判断题(对,错)。
第1题:
GiventhatastaticmethoddoIt()inaclassWorkrepresentsworktobedone,whatblockofcodewillsucceedinstartinganewthreadthatwilldothework?
CODEBLOCKa:
Runnabler=newRunnable(){
publicvoidrun(){
Work.doIt();
}
};
Threadt=newThread(r);
t.start();
CODEBLOCKb:
Threadt=newThread(){
publicvoidstart(){
Work.doIt();}};
t.start();
CODEBLOCKc:
Runnabler=newRunnable(){
publicvoidrun(){
Work.doIt();
}
};
r.start();
CODEBLOCKd:
Threadt=newThread(newWork());
t.start();
CODEBLOCKe:
Runnablet=newRunnable(){
publicvoidrun(){
Work.doIt();
}
};
t.run();
第2题:
第3题:
在Windows中,下列正确的文件名是
A.work:2
B.work*2
C.work[2]
D.work>2
第4题:
2、若有以下说明和语句,则引用方式不正确的是? struct worker{ int no; char *name; }work, *p=&work;
A.work.no
B.(*p).no
C.p->no
D.work->no
第5题:
下列哪些工程名是合法的()。
A.work_2
B.work2
C.2work
D.work2_
第6题:
A.mkpoint/work
B.mkmountpoint/work
C.touch/work
D.mkdir/work
第7题:
work
第8题:
下列检索提问式中,属于无限截断的是()。
A.analy?er
B.comput?
C.work??
D.work???
第9题:
若有以下说明和语句,则以下引用方式中不正确的是()。 struct worker { int no; char *name; }work, *p=&work;
A.work.no
B.(*p).no
C.p->no
D.work->no
第10题:
若有以下说明和语句,则引用方式不正确的是? struct worker{ int no; char *name; }work, *p=&work;
A.work.no
B.(*p).no
C.p->no
D.work->no