码迷,mamicode.com
首页 > 编程语言 > 详细

java线程使用示例——最简单的线程

时间:2015-01-08 18:02:46      阅读:178      评论:0      收藏:0      [点我收藏+]

标签:java   线程   thread   

java线程使用示例——最简单的线程

线程使用示例一:

public class ThreadTest {

	public static void main(String[] args) {
		//线程使用示例一:
		new Thread() {
			public void run() {
				while (true) {
					try {
						System.out.println("线程输出");
						
						//休眠两秒
						Thread.sleep(2 * 1000);
					} catch (InterruptedException e) {
						e.printStackTrace();
					}
				}
			};
		}.start();
	}

}
线程使用示例二:
        //线程使用示例二:
        Thread t1 = new Thread(new Runnable(){
            public void run(){
                System.out.println("Mythread 线程t1");
                while(true){
                	Singleton3 single3 = Singleton3.getInstance(null);
                    System.out.println("线程t1 >> " + single3.toString());
                	try {
        				Thread.sleep(2000);
        			} catch (InterruptedException e) {
        				// TODO Auto-generated catch block
        				e.printStackTrace();
        			}
                }
                
            }
        });
        t1.start();


java线程使用示例——最简单的线程

标签:java   线程   thread   

原文地址:http://blog.csdn.net/testcs_dn/article/details/42526549

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