当前位置:SCJP程序员认证考试题库

问题:

[单选]

1. import java.io.*; 
2. public class Foo implements Serializable { 
3. public int x, y; 
4. public Foo( int x, int y) { this.x = x; this.y = y; } 
5. 
6. private void writeObject( ObjectOutputStream s) 
7. throws IOException { 
8. s.writeInt(x); s.writeInt(y) 
9. } 
10. 
11. private void readObject( ObjectInputStream s) 
12. throws IOException, ClassNotFoundException { 
13. 
14. // insert code here 
15. 
16. } 
17. } 
Which code, inserted at line 14, will allow this class to correctly serialize and deserialize?() 

A .  s.defaultReadObject();
B .  this = s.defaultReadObject();
C .  y = s.readInt(); x = s.readInt();
D .  x = s.readInt(); y = s.readInt();

最具职业幸福感的排行榜上,公务员名列榜首 在德国,儿童接受义务教育前都经过入学成熟检查,这是一种体格健康和心智发展的检查,经检查被认为明显不合格者将被录取入()。 建设工程施工安全生产管理的安全生产责任制是指()。 各级隶属关系的企业和企业主管单位要按当地安全生产行政主管部门规定的时间报送安全事故报告的制度。 通过对生产过程中涉及的计划、组织、监控、调节和改进等一系列管理活动,保证安全生产的制度。 按照安全生产管理方针和“管生产的同时必须管安全”的原则,将各级负责人员、各职能部门及其工作人员和各岗位生产工人在安全生产方面应做的事情加以明确规定的一种制度。 使生产过程处于避免人身伤害、设备损坏及其他不可接受的损害风险的管理制度。 锅炉用无缝钢管用于制造使用温度不超过()的锅炉 400℃。 450℃。 500℃。 600℃。 每一移动式和手持式电气设备至局部接地极之间保护接地用底电缆芯线和接地导线的电阻值.不得超过(). 1.5。 1.0。 2.0。

1. import java.io.*; 
2. public class Foo implements Serializable { 
3. public int x, y; 
4. public Foo( int x, int y) { this.x = x; this.y = y; } 
5. 
6. private void writeObject( ObjectOutputStream s) 
7. throws IOException { 
8. s.writeInt(x); s.writeInt(y) 
9. } 
10. 
11. private void readObject( ObjectInputStream s) 
12. throws IOException, ClassNotFoundException { 
13. 
14. // insert code here 
15. 
16. } 
17. } 
Which code, inserted at line 14, will allow this class to correctly serialize and deserialize?() 

参考答案: D

  参考解析

本题暂无解析

在线 客服