山东大学java期末讲完第12章之后习题课内容及其答案讲课字体版Word文档下载推荐.docx
- 文档编号:16726249
- 上传时间:2022-11-25
- 格式:DOCX
- 页数:15
- 大小:22.04KB
山东大学java期末讲完第12章之后习题课内容及其答案讲课字体版Word文档下载推荐.docx
《山东大学java期末讲完第12章之后习题课内容及其答案讲课字体版Word文档下载推荐.docx》由会员分享,可在线阅读,更多相关《山东大学java期末讲完第12章之后习题课内容及其答案讲课字体版Word文档下载推荐.docx(15页珍藏版)》请在冰豆网上搜索。
floatfff=-1;
B:
floatfff=1.0;
C:
floatfff=42e1;
D:
floatfff=2.02f;
E:
floatfff=3.03d;
F:
floatfff=0x0123;
G:
shortb=31000;
(2).下面哪个逻辑表达式的值为真:
(A,B,c)√
intd=10;
doublee=10.0;
A:
(d==e)
(d==10.0)
(e==10)
(3).分析以下程序段:
√
....
Stringfff="
base"
;
fff.substring(0,3);
fff.concat("
ket"
);
该段程序执行后fff的结果为()
(base)(因为String的方法操作不变性0
以下英文试题为单选题:
(4)whicharelegaldeclarations?
(c)(p14)
Selectallrightanswers:
A.short[5]x2;
B.shortz2[5];
short[]z[][];
short[]y2=[5];
[考察数组的声明]
(5)whatistheresultwhenyoucompileandrunthefollowingcode?
(D)(p25)√
ClassExample{
StaticintmyArg=1;
Publicstaticvoidmain(String[]args){
intmyArg;
System.out.println(myArg);
}
Selectallrightanswers:
A.Thiscodecompilesanddisplays0inthestandardoutputwhenrun;
B.Thiscodecompilesanddisplays1inthestandardoutputwhenrun;
Thiscodedoesnotcompilebecauseyoucannotdefinealocalvariablenamedthesameasastaticvariable;
Thiscodedoesnotcompilebecausethelocalvariableisusedbeforeitisinitialized.
[注意区分实例变量和局部变量初始化的不同:
实例变量在创建对象时会根据类型赋予默认值,如:
int型变量赋予0。
而方法内的局部变量必须使用前赋值,即使创建对象后局部变量也要赋予初值]
//下题已经在讲完第7章之后的习题课中出现
(6)whatistheresultwhenyoucompileandrunthefollowingcode?
(D)(p96)
Publicstaticvoidmain(String[]args){
If(newBoolean(“true”)==newBoolean(“true”)){
System.out.println(“True”);
else{System.out.println(“False”);
A.Compilationerror;
B.Nocompilationerror,butruntimeexception;
Prints“True”;
Prints“False”.
[考察两个对象的比较:
两个属于包装类的对象的比较,就是两个一般对象的比较]
(7)whatistheresultwhenyoucompileandrunthefollowingcode?
(C)(p157)√
privateintm;
Publicstaticvoidfun(){
//somecode…………….
Howcanthemembervariablembeaccessibledirectlyinthemethodfun()?
A.changeprivateintmtoprotectedintm;
B.changeprivateintmtopublicintm;
changeprivateintmtostaticintm;
changeprivateintmtointm.
[考察静态方法对其他方法和变量的访问]
(8)whatistheresultwhenyoucompileandrunthefollowingcode?
(D)(p169)√
publicClassExample{
Publicstaticvoidmain(String[]args){
intx=5;
Examplep=newExample();
p.doStuff(x);
System.out.print(“mainx=”+x);
voiddostuff(intx){
System.out.print(“dostuffx=”+x++);
A.Compilationfails;
B.Anexceptionisthrownatruntime;
doStuffx=6mainx=6;
doStuffx=5mainx=5;
doStuffx=5mainx=6;
doStuffx=6mainx=5;
[考察静态方法对非静态方法的调用,以及局部变量的作用范围]
(9)whatistheresultwhenyoucompileandrunthefollowingcode?
(A)(p182)
Strings=”Hello”;
publicstaticvoidmain(String[]args){
Exampleh=newExample();
h.methodA(s);
System.out.println(h.s);
publicstaticvoidmethodA(Strings){
s.replace(‘a’,’e’);
s+=”World!
!
”;
A.Compileerrorbecausestringisnotstatic;
B.prints“HelloWorld!
”.
prints“Hello”.
prints“World!
Runtimeexceptionoccurs.
[考察静态方法对变量的访问]
(10)whatistheresultwhenyoucompileandrunthefollowingcode?
(B)(p207)
(11)Giventhefollowingcode:
(A)(p242)
Switch(s){
Default:
System.out.println(“BestWishes”);
}
Whichdatatypecan‘s’be?
selectallrightanswer:
byte
long
float
double
[考察Switch语句]
(11+1)whatistheresultwhenyoucompileandrunthefollowingcode?
(A)(p243)
(12)whatistheresultwhenyoucompileandrunthefollowingcode?
(F)(p268)
ClassA{
voidprocess()throwsException{
ThrownewException();
ClassBextendsA{
voidprocess(){
System.out.println(“B”);
publicstaticvoidmain(Stringargs[]){
Aa=newB();
a.process();
}
A.prints“B”.
B.Thecodeexceptionisthrownatruntime.
Thecoderunwithnooutput.
compilationfailsbecauseofanerrorinline10.
compilationfailsbecauseofanerrorinline11.
compilationfailsbecauseofanerrorinline12.
(该题目考察方法对所抛出的异常的处理)
(备注:
程序在编译a.process();
会报错,因为main方法中忽视了异常处理)
(或者说:
尽管程序员想实际执行classB中的方法process(),但编译阶段就会报错)
(该题目仅供参考)
(13)whatistheresultwhenyoucompileandrunthefollowingcode?
(C)(p321)(t)
(14)whatistheresultwhenyoucompileandrunthefollowingcode?
(B)(p337)√
PublicclassExample{
staticintage;
age=age+1;
System.out.println(“Theageis”+age);
A.Compilesandrunswithnooutput;
B.CompilesandrunsprintingoutTheageis1;
Compilesbutgeneratesaruntimeerror;
Doesnotcompile;
Compilesbutgenerateacompiletimeerror.
[该题目考察静态变量的初始化方法,静态变量在声明后会根据类型赋予默认值]
(15)whatistheresultwhenyoucompileandrunthefollowingcode?
(B)(p351)√
ClassBase{
publicvoidBase(){
System.out.println(“Base”);
PublicclassExampleextendsBase{
Examplei=newExample();
A.CompiletimeerrorBaseisakeyword;
B.Compilationandnooutputatruntime;
OutputofBase;
RuntimeerrorBasehasnovalidconstructor.
[该题目考察构造函数,本例中父类Base中的Base()不是构造函数,只是一个方法]
(16)注意英文的语气:
If某种条件,allofthefollowingarelegalexceptwhichassignmentstatement?
(17)注意英文的语气:
In某种场合或条件,WhichofthefollowingisnotawaythataJavaprogramcouldhandleanexception?
(18)referstopolymorphicvariable的问题
习题01:
阅读下面异常处理程序,写出执行结果(6分)√
publicclassExceptionDemo{
publicstaticvoidmain(String[]args){
ExceptionTestet=newExceptionTest();
et.m1();
classExceptionTest{inti;
int[]a=newint[5];
voidm1(){
try{while(true){
m2();
System.out.println();
}catch(Exceptione){
System.out.println("
m1runs"
voidm2()throwsException{
try{System.out.println(10/i);
System.out.println(a[i]);
}catch(ArithmeticExceptione){
i=10;
handleArithmeticException"
Finally{
finally"
System.out.println("
m2ends"
}
习题02:
阅读下列程序,并给出下列程序运行的输出结果(10分)√
classT{
voidf(intx){System.out.println("
intinT:
"
+x);
voidf(doublex){System.out.println("
doubleinT:
voidf(Objectx){System.out.println("
ObjectinT:
}}
classSextendsT{
intinS:
publicclassTestOverride{
Tt=newS();
t.f(20);
t.f(20L);
t.f(3.5f);
t.f(3.5);
t.f("
abcdef"
习题03:
编写方法,用£
≈1-1/3!
+1/5!
-1/7!
+(-1)n*1/(2n-1)!
公式求£
的近似值,直到误差小于10-6视为稳定,输出£
。
(10分)√
习题04:
要求任意名学生按照A、B、C、D等级对学生食堂的饭菜质量进行评估,并将调查的结果(四个等级的各占比例)存入文本文件result.txt.(10分)[注:
不必写出完整的类设计,编写相关的方法即可](参考题)√
习题05:
下面的程序是算2n的,填入适当的程序片断。
(7分)√
Theprogramwillcompute2n,filltheproperprogramsegmentinblank。
publicstaticdoubletentoThe(intn)
{
if____________//1、第一小题
return1
elseif(n>
0)
return_______________//2、第二小题
else
return_____________________//3、第三小题
习题06:
回答学生问题:
(可能是04-05学年考试题)(参考题)
(1)比较FileoutputStreamoo=newFileoutputStream("
Hello.txt"
FileInputStreamoo=newFileInputStream("
当文件”Hello.txt”不存在时,各自是什么动作?
(2)在try-catch-finally语句中return语句的用法√
习题07:
(处理文本文件)(参考题)
(1)输入10个小数,按升序排序,然后写入某个文本文件,使其数字之间有定界符/分割符符号存在.√
(2)某文本文件存有10个无序小数,整数间以一个、多个定界符隔开。
如何读出这些数字,并按照升序排列,并输出之.
习题07+:
(参考题)
对图9.17(处理二进制文件的程序Doubler.java)的改写要求:
(1)如何打开指定完整路径的某个二进制文件.
(2)完成某种数学计算
(3)将结果写入别的文件
习题08:
对chapter11的自测题第4,第5题的要求:
深入分析递归过程,完全掌握此类题目的写作方法
(要求自己能写出一个较完整的递归程序,起码基本逻辑正确)
习题09:
chapter11编程练习的的第3题完全版:
(原教材)
importjava.io.*;
publicclassexercise3{
Strings="
"
intn=0;
intflag=1;
intfact=0;
while(flag==1){
System.out.println("
Enterainteger,calculatethefactorial(n!
):
n=SavitchIn.readInt();
fact=Fact(n);
System.out.println(Integer.toString(n)+"
isequalto"
+
Integer.toString(fact));
Doyouwanttocontinue?
(y/n)"
s=SavitchIn.readLine();
if(s.equals("
y"
)){flag=1;
n"
)){flag=0;
System.exit(0);
publicstaticintFact(intn){
if(n==0){return
(1);
else{return(n*Fact(n-1));
习题10:
(可以做参考练习,本题有一定难度)
阅读下面一段递归程序,写出调用walkthrough(0,0)后,二维数组table中各个位置存放的字母,(请重新绘制table!
!
A
D
staticintwidth=5,height=5,count=0;
staticchar[][]table={{'
A'
'
},{'
D'
}};
staticvoidwalkthrough(intx,inty){
if(table[x][y]=='
){
table[x][y]=(char)((int)'
a'
+count);
count++;
if(x<
height-1)
walkthrough(x+1,y);
if(x>
0)
walkthrough(x-1,y);
if(y<
width-1)
walkthrough(x,y+1);
if(y>
walkthrough(x,y-1);
}
习题11:
(别的教材里出现过,可以做参考练习,本题有一定难度)√
试编写一个递归程序,实现一串字符或一个字符数组的全排列输出:
例如:
“abc”的全排列输出是:
abc
acb
bac
bca
cba
cab
又例如:
“abcd”的全排列
- 配套讲稿:
如PPT文件的首页显示word图标,表示该PPT已包含配套word讲稿。双击word图标可打开word文档。
- 特殊限制:
部分文档作品中含有的国旗、国徽等图片,仅作为作品整体效果示例展示,禁止商用。设计者仅对作品中独创性部分享有著作权。
- 关 键 词:
- 山东大学 java 期末 讲完第 12 之后 习题 内容 及其 答案 讲课 字体