【Java例题】7.1 线程题1-时间显示线程
1.时间显示线程。
设计一个示线程子类,每秒钟显示一次当前时间;
然后编写主类,在主函数中定义一个线程对象,并启动这个线程
package chapter7; import java.text.SimpleDateFormat; import java.util.Date; public class demo1 { public static void main(String[] args) { MyThread1 t1=new MyThread1(); t1.start(); } } class MyThread1 extends Thread { SimpleDateFormat s = new SimpleDateFormat("yyyy年MM月dd日 HH:mm:ss"); public void run() { while (true) { String str = s.format(new Date()); System.out.println(str); try { Thread.sleep(1000); } catch (InterruptedException e) { System.out.println(e); } } } }