JAVA认证历年真题:SCJP考试真题和解析(1)

来源:java认证发布时间:2012-11-12 13:05:45java认证视频


  例题7:

  True or False: Readers have methods that can read and return floats and doubles.

  A. Ture

  B. False

  解答:B

  点评: Reader/Writer只处理Unicode字符的输入输出。float和double可以通过stream进行I/O.

  例题8:

  What does the following paint() method draw?

  1. public void paint(Graphics g) {

  2. g.drawString(“Any question”, 10, 0);

  3. }

  A. The string “Any question?”, with its top-left corner at 10,0

  B. A little squiggle coming down from the top of the component.

  解答:B

  点评:drawString(String str, int x, int y)方法是使用当前的颜色和字符,将str的内容显示出来,并且最左的字符的基线从(x,y)开始。在本题中,y=0,所以基线位于最顶端。我们只能看到下行字母的一部分,即字母‘y’、‘q’的下半部分。

  例题9:

  What happens when you try to compile and run the following application? Choose all correct options.

  1. public class Z {

  2. public static void main(String[] args) {

  3. new Z();

  4. }

  5.

  6. Z() {

  7. Z alias1 = this;

  8. Z alias2 = this;

  9. synchronized(alias1) {

  10. try {

  11. alias2.wait();

  12. System.out.println(“DONE WAITING”);

  13. }

  14. catch (InterruptedException e) {

  15. System.out.println(“INTERR
  UPTED”);

  16. }

  17. catch (Exception e) {
 
  18. System.out.println(“OTHER EXCEPTION”);

  19. }

  20. finally {

  21. System.out.println
  (“FINALLY”);

  22. }

  23. }

  24. System.out.println(“ALL DONE”);

  25. }

  26. }

  A. The application compiles but doesn't print anything.

  B. The application compiles and print “DONE WAITING”

  C. The application compiles and print “FINALLY”

  D. The application compiles and print “ALL DONE”

  E. The application compiles and print “INTERRUPTED”

  解答:A

  点评:在Java中,每一个对象都有锁。任何时候,该锁都至多由一个线程控制。由于alias1与alias2指向同一对象Z,在执行第11行前,线程拥有对象Z的锁。在执行完第11行以后,该线程释放了对象Z的锁,进入等待池。但此后没有线程调用对象Z的notify()和notifyAll()方法,所以该进程一直处于等待状态,没有输出。

视频学习

我考网版权与免责声明

① 凡本网注明稿件来源为"原创"的所有文字、图片和音视频稿件,版权均属本网所有。任何媒体、网站或个人转载、链接转贴或以其他方式复制发表时必须注明"稿件来源:我考网",违者本网将依法追究责任;

② 本网部分稿件来源于网络,任何单位或个人认为我考网发布的内容可能涉嫌侵犯其合法权益,应该及时向我考网书面反馈,并提供身份证明、权属证明及详细侵权情况证明,我考网在收到上述法律文件后,将会尽快移除被控侵权内容。

最近更新

社区交流

考试问答