1. 程式人生 > >執行緒——一個計數器計數到100,在每個數字之間暫停1秒,每隔10個數字輸出一個字串

執行緒——一個計數器計數到100,在每個數字之間暫停1秒,每隔10個數字輸出一個字串

【16】一個計數器計數到100,在每個數字之間暫停1秒,每隔10個數字輸出一個字串。

public class MyThread extends Thread{
	public void run() 
	{
		for(int i=0;i<100;i++)
		{
			if(i%10==0)
			{
				System.out.println("------"+i);
			}
			System.out.print(i);
			try {
				Thread.sleep(1);
				System.out.print("    執行緒睡眠1毫秒!\n");
			}catch(InterruptedException e){
				e.printStackTrace();
			}
		}	
	}
	public static void main(String[] args) {
		new MyThread().start();
	}
}

在這裡插入圖片描述