I _____ you will come back soon.[ ]
A. hope
B. wish
C. want
D. should
答案:A
下列规划发展目标中,属于管理发展目标的是( )。
A.体制改革 B.医疗卫生C.教育水平 D.组织机构E.人员素质
下列程序的输出结果是______。class T44 implements Runnable { public void run() { System.out.print in (Thread.currentThread ( ).getName ( ) + "运行" ); } } public class ex44 { public static void main(String[] args) { Thread t1 = new Thread(new T44(), "t1"); Thread t2 = new Thread(new T44 () , "t2"); t1.setPriority(Thread. MAX_PRIORITY); t2.setPriority(Thread.MIN_PRIORITY); t2. start (); t1.start (); } }
A.t1 运行t2 运行
B.t2 运行 t1 运行
C.t1 运行 t1 运行
D.t2 运行 t2 运行