public class MyWait extends Thread { SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss:SSS"); public void run() { synchronized (this) { while (true) { System.out.println(sdf.format(new Date())); try { this.wait(1000); } catch (InterruptedException e) { e.printStackTrace(); } } } } public static void main(String[] args) { new MyWait().start(); new MyWait().start(); }}
4 回答
已采纳
慕仰7261054
TA贡献8条经验 获得超2个赞
MyWait继承了Thread类,Thread类实现了Runable接口,MyWait会成为一个自己定义的线程实现类,具备了线程的start()方法.
添加回答
举报
0/150
提交
取消