在多线程并发程序设计中,能够给对象x加锁的语句是()。
A. X.wait
B. synchronized(x)
C. X.notify
D. x.synchronized
查看答案
下列代码中 if(x>O){System.out.println("first");} elseif(x>-3){System.out.println("second");) else{System.out.println("third");) 要求打印字符串为“second”时,X的取值范围是()。
A. x<=0且x>-3
B. x>0
C. x>-3
D. x<=-3
下列横线处应填写的语句是()。 import JaVa.awt.*; public class FirstFrame. extends Frame{ public static void main(String args[]){ FirstFrame. fr=new FirstFrame("First container!"); fr.setsize(240,240); fr.setBackground(Color.yellow); } public FirstFrame(String str){ super(str); } }
A. fr.setVisible(true)
B. fr.setVisible(false)
C. fr.setFrame(true)
D. fr.setmyFrame(true)
Java API ee支持线程的类或接口是()。 Ⅰ.java.lang.Thread Ⅱ.java.lang.Runnable Ⅲ.java.lang.ThreadGroup IV.java.io.Serializable
A. I,Ⅱ
B. I,Ⅱ,Ⅲ
C. I,Ⅱ,IV
D. I,Ⅱ,Ⅲ,Ⅳ
结构化程序所要求的基本结构不包括()。
A. 顺序结构
B. GOT跳转
C. 选择(分支)结构
D. 重复(循环)结构