第16周作业

题目一:

编写一个应用程序,利用Java多线程机制,实现时间的同步输出显示。

源代码:

Text.java

public class Test {
    public static void main(String[] args){
    Thread time=new Thread(new ThreadTime());//创建线程对象
    time.start(); //进入队列后运行
    }
}

ThreadTime.java

import java.util.Date;
public class ThreadTime implements Runnable {
    
    public void run() {
        while(true) {
            Date date=new Date();
            System.out.println(date);    //输出当前系统时间
            try {
                Thread.sleep(1000);    //每隔1S休眠一次
            } catch (InterruptedException e) {
                e.printStackTrace();
            }
        }
    }

}

运行结果:

第16周作业_第1张图片

你可能感兴趣的:(第16周作业)