码迷,mamicode.com
首页 > 其他好文 > 详细

每隔10秒钟打印一个“Helloworld”

时间:2017-11-13 21:32:58      阅读:195      评论:0      收藏:0      [点我收藏+]

标签:void   inter   stat   rtt   logs   style   nts   ++   led   

/**
 * 每隔10秒钟打印一个“Helloworld”
 */
public class Test03 {

    public static void main(String[] args) throws InterruptedException {
        ThreadImp threadImp = new ThreadImp();
        Thread thread1 = new Thread(threadImp);
        thread1.start();
    }
}

class ThreadImp extends Thread {
    public void run() {
        for (int i = 0; i < 10; i++) {
            System.out.println("StartThread-"
                    + (i + 1)
                    + ":"
                    + new SimpleDateFormat("yyyy/MM/dd hh:mm:ss:Ms")
                            .format(new Date()));
            System.out.println("hello world");
            try {
                sleep(10000);
            } catch (InterruptedException e) {
                e.printStackTrace();
            }
        }
    }
}

 

每隔10秒钟打印一个“Helloworld”

标签:void   inter   stat   rtt   logs   style   nts   ++   led   

原文地址:http://www.cnblogs.com/areyouready/p/7827692.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!