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

【转】c# thread.join 理解

时间:2014-08-06 18:27:32      阅读:199      评论:0      收藏:0      [点我收藏+]

标签:style   blog   http   color   art   ar   div   line   

转自:http://blog.csdn.net/lulu_jiang/article/details/6584251

线程Join()方法:让一个线程等待另一线程终结后再继续运行。

 

private static void Method()
{
    Thread.Sleep(5000);
    Console.WriteLine("当前线程:" + Thread.CurrentThread.Name);
}

static void Main(string[] args)
{
    Thread.CurrentThread.Name = "MainThread";
    
    Thread thread = new Thread(Method);
    thread.Name = "Thread";
    thread.Start();
    //会阻止主线程,直到thread线程终结(线程方法返回或线程遇到异常)
    //输出:当前线程:Thread
    //      主线程:MainThread
    //可以注销此句对比输出结果
    thread.Join();

    Console.WriteLine("主线程:" + Thread.CurrentThread.Name);

    Console.Read();
}

 

【转】c# thread.join 理解,布布扣,bubuko.com

【转】c# thread.join 理解

标签:style   blog   http   color   art   ar   div   line   

原文地址:http://www.cnblogs.com/wdw31210/p/3895154.html

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