Java 笔试题Word下载.docx
- 文档编号:21656945
- 上传时间:2023-01-31
- 格式:DOCX
- 页数:9
- 大小:17.03KB
Java 笔试题Word下载.docx
《Java 笔试题Word下载.docx》由会员分享,可在线阅读,更多相关《Java 笔试题Word下载.docx(9页珍藏版)》请在冰豆网上搜索。
System.err.println(str1==str2);
4.
下列说法正确的有()
A.class中的constructor不可省略
B.constructor必须与class同名,但方法不能与class同名
C.constructor在一个对象被new时执行
D.一个class只能定义一个constructor
5.指针在任何情况下都可进行>
<
>
=,<
=,==运算?
()
6.下面程序的运行结果:
()
publicstaticvoidmain(Stringargs[]){
Threadt=newThread(){
publicvoidrun(){
pong();
}
};
t.run();
System.out.print("
ping"
staticvoidpong(){
pong"
}
Apingpong
Bpongping
Cpingpong和pongping都有可能
D都不输出
7.下列属于关系型数据库的是()
A.Oracle
BMySql
CIMS
DMongoDB
8.GC线程是否为守护线程?
9.volatile关键字是否能保证线程安全?
10.下列说法正确的是()
ALinkedList继承自List
BAbstractSet继承自Set
CHashSet继承自AbstractSet
DWeakMap继承自HashMap
11.存在使i+1<
i的数吗?
12.0.6332的数据类型是()
Afloat
Bdouble
CFloat
DDouble
13.下面哪个流类属于面向字符的输入流(
)
A
BufferedWriter
B
FileInputStream
C
ObjectInputStream
DInputStreamReader
14.Java接口的修饰符可以为()
Aprivate
Bprotected
Cfinal
Dabstract
15.不通过构造函数也能创建对象吗()
A是
B否
16.ArrayListlist=newArrayList(20);
中的list扩充几次()
A0
B1
C2
D3
17.下面哪些是对称加密算法()
ADES
BAES
CDSA
DRSA
18.新建一个流对象,下面哪个选项的代码是错误的?
A)newBufferedWriter(newFileWriter("
a.txt"
));
B)newBufferedReader(newFileInputStream("
a.dat"
C)newGZIPOutputStream(newFileOutputStream("
a.zip"
D)newObjectInputStream(newFileInputStream("
19.下面程序能正常运行吗()
publicclassNULL{
publicstaticvoidhaha(){
System.out.println("
haha"
publicstaticvoidmain(String[]args){
((NULL)null).haha();
20.下面程序的运行结果是什么()
classHelloA{
publicHelloA(){
HelloA"
{System.out.println("
I'
mAclass"
static{System.out.println("
staticA"
publicclassHelloBextendsHelloA{
publicHelloB(){
HelloB"
mBclass"
staticB"
publicstaticvoidmain(String[]args){
newHelloB();
}
21.
getCustomerInfo()方法如下,try中可以捕获三种类型的异常,如果在该方法运行中产生了一个IOException,将会输出什么结果()
publicvoidgetCustomerInfo(){
try{
//dosomethingthatmaycauseanException
}catch(java.io.FileNotFoundExceptionex){
FileNotFoundException!
"
}catch(java.io.IOExceptionex){
IOException!
}catch(java.lang.Exceptionex){
Exception!
BIOException!
CFileNotFoundException!
DFileNotFoundException!
22.下面代码的运行结果为:
importjava.io.*;
importjava.util.*;
publicclassfoo{
publicstaticvoidmain(String[]args){
Strings;
s="
+s);
代码得到编译,并输出“s=”
代码得到编译,并输出“s=null”
由于Strings没有初始化,代码不能编译通过
D
代码得到编译,但捕获到
NullPointException异常
23.
System.out.println("
5"
+2);
的输出结果应该是()。
52
B7
C2
D5
24.
指出下列程序运行的结果
publicclassExample{
Stringstr=newString("
good"
char[]ch={'
a'
'
b'
c'
publicstaticvoidmain(Stringargs[]){
Exampleex=newExample();
ex.change(ex.str,ex.ch);
System.out.print(ex.str+"
and"
System.out.print(ex.ch);
publicvoidchange(Stringstr,charch[]){
str="
testok"
ch[0]='
g'
A、
goodandabc
B、
goodandgbc
C、
testokandabc
D、
testokandgbc
25.
要从文件"
file.dat"
中读出第10个字节到变量c中,下列哪个方法适合?
FileInputStreamin=newFileInputStream("
in.skip(9);
intc=in.read();
in.skip(10);
RandomAccessFilein=newRandomAccessFile("
intc=in.readByte();
26.
下列哪种异常是检查型异常,需要在编写程序时声明
ANullPointerException
BClassCastException
CFileNotFoundException
DIndexOutOfBoundsException
27.下面的方法,当输入为2的时候返回值是多少?
publicstaticintgetValue(inti){
intresult=0;
switch(i){
case1:
result=result+i;
case2:
result=result+i*2;
case3:
result=result+i*3;
returnresult;
A0
B2
C4
D10
28.
选项中哪一行代码可以替换题目中//addcodehere而不产生编译错误?
publicabstractclassMyClass{
publicintconstInt=5;
//addcodehere
publicvoidmethod(){
Apublicabstractvoidmethod(inta);
BconstInt=constInt+5;
publicintmethod();
publicabstractvoidanotherMethod(){}
29.阅读Shape和Circle两个类的定义。
在序列化一个Circle的对象circle到文件时,下面哪个字段会被保存到文件中?
(
classShape{
publicStringname;
classCircleextendsShapeimplementsSerializable{
privatefloatradius;
transientintcolor;
publicstaticStringtype="
Circle"
Aname
radius
color
type
30.下面是People和Child类的定义和构造方法,每个构造方法都输出编号。
在执行newChild("
mike"
)的时候都有哪些构造方法被顺序调用?
请选择输出结果
classPeople{
Stringname;
publicPeople(){
System.out.print
(1);
publicPeople(Stringname){
System.out.print
(2);
this.name=name;
classChildextendsPeople{
Peoplefather;
publicChild(Stringname){
System.out.print(3);
father=newPeople(name+"
:
F"
publicChild(){
System.out.print(4);
A312
B32
C432
D132
- 配套讲稿:
如PPT文件的首页显示word图标,表示该PPT已包含配套word讲稿。双击word图标可打开word文档。
- 特殊限制:
部分文档作品中含有的国旗、国徽等图片,仅作为作品整体效果示例展示,禁止商用。设计者仅对作品中独创性部分享有著作权。
- 关 键 词:
- Java 笔试题 笔试