摘要: 指在一线程里面调用另一线程join方法时,表示将本线程阻塞直至另一线程终止时再执行 比如 1using System; 2 3namespace TestThreadJoin 4{ 5 class Program 6 { 7 static void Main() 8 { 9 System.Threading.Thread x = new System.Threading.Thread(new System.Threading.ThreadStart(f1));10 x.Start();11 ... 阅读全文
posted @ 2013-07-29 13:01 Jones.Zhao 阅读(671) 评论(0) 推荐(0) 编辑