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) //声明创建对象thread1Thread thread = new Thread(thread1,"线程1")thread.start(); //通过对象thread启动线程}}
5.2编写一个应用程序创建两个线程,一个线程打印输出1~1000之间所有的奇数,另外一个线程打印输出1~1000之间所有的偶数,要求两个线程随机休眠一段时间后继续打印输出下一个数。