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

java——多线程的实现

时间:2015-12-20 11:49:29      阅读:173      评论:0      收藏:0      [点我收藏+]

标签:

技术分享

package test;

class TestThread extends Thread{
    
public void run()
{
    for(int n=0;n<3;n++)
    { try{Thread.sleep(1000);}//线程休息毫秒
    catch(InterruptedException e){e.printStackTrace();}
    System.out.println("n="+n);    
    }

}

}
package test;

public class Testlianxithread {

    public static void main(String[] args) {

        TestThread tt = new TestThread();
        tt.start();// 启动多线程
        TestThread tt2 = new TestThread();
        tt2.start();
        TestThread tt3 = new TestThread();
        tt3.start();

    }

}

输出结果为每隔1000毫秒输出

技术分享

java——多线程的实现

标签:

原文地址:http://www.cnblogs.com/Chenshuai7/p/5060477.html

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