首页 > 编程语言 > 详细

java——多线程的实现

时间:2015-12-20 11:48:17      阅读:224      评论: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
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!