不能让线程停止执行的是哪一句( )。
A: sleep();
B: stop();
C: suspend();
D: notifyAll();
A: sleep();
B: stop();
C: suspend();
D: notifyAll();
D
举一反三
- 方法 resume( ) 负责重新开始哪个线程的执行?( ) A: 被 stop( ) 方法停止的线程 B: 被 sleep( ) 方法停止的线程 C: 被 wait( ) 方法停止 D: 被 suspend( ) 方法停止
- 方法 resume( ) 负责重新开始哪个线程的执行?( )[br][/br] A: 被 sleep( ) 方法停止的线程 B: 被 suspend( ) 方法停止 C: 被 stop( ) 方法停止的线程 D: 被 wait( ) 方法停止
- resume()方法恢复( )的执行。 A: 通过调用stop()方法而停止的线程 B: 通过调用sleep()方法而停止运行的线程 C: 通过调用wait()方法而停止运行的线程 D: 通过调用suspend()方法而停止运行的线程
- 方法resume()负责恢复下列哪一个线程的执行( )? A: 通过调用stop()方法而停止的线程 B: 通过调用sleep()方法而停止的线程 C: 通过调用wait()方法而停止的线程 D: 通过调用suspend()方法而停止的线程
- 以下哪个方法不能使线程进入阻塞状态()。 A: sleep() B: wait() C: suspend() D: stop()
内容
- 0
Thread的方法resume()负责恢复哪些线程的执行? [] A: 通过调用stop()方法而停止的线程。 B: 通过调用sleep()方法而停止运行的线程。 C: 通过调用wait()方法而停止运行的线程。 D: 通过调用suspend()方法而停止运行的线程。
- 1
resume()方法负责恢复被______方法挂起的线程。 A: sleep() B: stop() C: wait() D: suspend()
- 2
和resume()方法相互搭配,使线程停止执行,然后调用resume()方法恢复线程的是( )。 A: interrupt() B: stop() C: suspend() D: yield()
- 3
resume( )方法负责恢复被哪个方法挂起的线程 A: stop( ) B: sleep( ) C: wait( ) D: suspend( )
- 4
可以使用________方法强迫一个线程等待另一个线程的结束. A: sleep(longmilliseconds) B: yield() C: stop() D: suspend() E: join()