让正在运行的线程休眠50毫秒的语句为()
A: Thread.stop(50)
B: Thread.sleep(50)
C: Thread.start(50)
D: Thread.suspend(50)
A: Thread.stop(50)
B: Thread.sleep(50)
C: Thread.start(50)
D: Thread.suspend(50)
举一反三
- JAVA中Thread类的sleep()是静态方法,只能控制当前正在运行的线程休眠,而不能控制其它线程休眠
- Thread类的哪个方法用来启动线程的运行?() A: run() B: start() C: begin() D: execute(Thread t)
- 下列方法可以通过Thread类就可以调用,而不需要通过Thread类的实例进行调用的是 ( ) A: sleep() B: start() C: setPriority() D: suspend()
- 3启动线程的方法是() A: run() B: start() C: sleep() D: new Thread()
- 5.1 在(1)~(3)处填上适当的语句,使程序能正常运行。 class MyThread implements Runable { (1) { while(true){System.out.print("hello"); try { (2) //休眠1秒钟 } catch (InterruptedException e) { e.printStackTrace(); } }}} public class Demo{ public static void main(String []s){ MyThread thread1= (3) //声明创建对象thread1 Thread thread = new Thread(thread1,"线程1") thread.start(); //通过对象thread启动线程 }}