试题详情
- 单项选择题 1. class A implements runable ( 2. int i; 3. public void run () ( 4. try ( 5. thread.sleep(5000); 6. i= 10; 7. ) catch(InterruptedException e) {} 8. ) 9. ) 10. 11. public class Test { 12. public static void main (string args) ( 13. try ( 14. A a = new A (); 15. Thread t = new Thread (a); 16. t.start(); 17. 18. int j= a.i; 19. 20. ) catch (Exception e) {} 21. ) 22. ) Which statement al line 17 will ensure that j=10 at line 19?()
A、 a.wait();
B、 t.wait();
C、 t.join();
D、 t.yield();
E、 t.notify();
F、 a.notify();
G、 t.interrupt();
- C
关注下方微信公众号,在线模考后查看
热门试题
- Given an
- 现有: class
- 现有: class&ens
- 下列关于线程调度的叙述中,错误的是()。
- Which three
- 在JAVA中,如何建立临时文件?()
- Given the&ensp
- 设 x = 1 ,y = 2 , z =
- Given that&ensp
- interface foo&
- 输出流输出数据后,应调用哪个方法将其关闭
- 有一堆桃子(个数不超过1000),如果分
- 下列Map的泛型声明中正确的是哪项?()
- Assume theQ
- 数组元素所占用的内存位于()
- 现有: Public/pr
- 现有: interface
- Fibonacci数列的前几个数为:0,
- class Computat
- 一个类只能有一个父类,但可以实现多个接口