- 1、本文档共143页,可阅读全部内容。
- 2、有哪些信誉好的足球投注网站(book118)网站文档一经付费(服务费),不意味着购买了该文档的版权,仅供个人/单位学习、研究之用,不得用于商业用途,未经授权,严禁复制、发行、汇编、翻译或者网络传播等,侵权必究。
- 3、本站所有内容均由合作方或网友上传,本站不对文档的完整性、权威性及其观点立场正确性做任何保证或承诺!文档内容仅供研究参考,付费前请自行鉴别。如您付费,意味着您自己接受本站规则且自行承担风险,本站不退款、不进行额外附加服务;查看《如何避免下载的几个坑》。如果您已付费下载过本站文档,您可以点击 这里二次下载。
- 4、如文档侵犯商业秘密、侵犯著作权、侵犯人身权等,请点击“版权申诉”(推荐),也可以打举报电话:400-050-0827(电话支持时间:9:00-18:30)。
查看更多
JAVA面试题库
JAVA基础部分面试题库
第一部分:选择题
1) 哪个不是面向对象的特征 ( )
a) 封装性 b) 继承性 c) 多态性 d) 健壮性
2) 编译JAVA文件的命令是( )。
a) Java b) Javac c) Javadb d) Javaw
3) JAVA源文件的扩展名是( )。
a) Class b) exe c) java d) dll
4) JAVA内部使用的编码格式是( )。
a) UTF-8 b) ASCII c) UNICODE d) ISO8859-1
5) 下列变量名称不合法的是( ) a) Index b) $bc3 c) _cccde d) 34#bc5
6) 下边对基本数据类型的说明正确的是( )
a) Int可以自动转换为BYTE类型
b) DOUBLE类型的数据占用2个字节
c) JAVA中一共有4类8种基本数据类型
d) JAVA中一共有3类8种基本数据类型
7) 下列不是JAVA关键字的是( )
a) goto b) if c) count d) private
8) 下列变量声明中正确的是( )
a) Float f = 3.13 b) Boolean b = 0
c) Int number = 5 d) Int xByte a = x
9) public void go() {
String o = ;
z:
for(int x = 0; x 3; x++) {
for(int y = 0; y 2; y++) {
if(x==1) break;
if(x==2 y==1) break z;
o = o + x + y;
}
}
System.out.println(o);
}
程序的执行结果是( )
a) 00
b) 0001
c) 000120
d) e) Compilation fails.
f) An exception is thrown at runtime
10) class Payload {
private int weight;
public Payload (int w) { weight = w; }
public void setWeight(int w) { weight = w; }
public String toString() { return Integer.toString(weight); }
}
public class TestPayload {
static void changePayload(Payload p) { /* insert code */ }
public static void main(String[] args) {
Payload p = new Payload(200);
p.setWeight(1024);
changePayload(p);
System.out.println(p is + p);
}
}
Insert code处写入哪句话, 可以使程序的输出结果是420( )
a) p.setWeight(420);
b) p.changePayload(420);
c) p = new Payload(420);
d) Payload.setWeight(420);
e) p = Payload.setWeight(420);
11) void waitForSignal() {
Object obj = new Object();
synchronized (Thread.currentThread()) {
obj.wait();
obj.notify();
}
}这个程序片段的运行结果是什么( )
a) This code can throw an InterruptedException.
b) This code can throw an IllegalMonitorStateException.
c) This code can throw a TimeoutException after ten minutes.
d) Reversing the order of obj.wait() and obj.notify() might cause this method to complete normally.
12) public class Threads2 implements Runnable {
public void run() {
Syste
文档评论(0)