A. sleep() B. wait() C. suspend() D. stop()
A. getPriority() B. setPriority() C. yield() D. wait()
A. notify() B. resume() C. run() D. 以上都不是
A. 等待阻塞状态下的线程被notify( )方法调用。 B. 等待阻塞状态下的线程被Interrupt( )方法中断。 C. 等待时间到。 D. 等待阻塞状态下的线程调用wait( )方法。
A. 调用sleep( )方法,使线程进入睡眠状态。 B. 用suspend( )方法暂停纯种的执行。 C. 用wati( )方法暂停线程的执行。 D. 调用setPriority( )方法。