题目1:编写一个应用程序,利用Java多线程机制,实现时间的同步输出显示。
源代码:Test.java
package ccut.edu.xc; import java.util.Date; public class Test { public static void main(String[] args) { Thread thread = new Sj(); thread.start();//开始 } } class Sj extends Thread{//继承Thread类 public void run() {//重写run方法 while(true) { System.out.println(new Date()); try { Thread.sleep(1000);//休眠一秒 } catch (InterruptedException e) { e.printStackTrace(); } } } }