2012年3月5日

Thread.Join线程阻塞的理解

摘要: Thread.Join 方法 ,以C#为例讲解,VB同样适用: MSDN:Blocks the calling thread until a thread terminates. 在Windows中,进行CPU分配是以线程为单位的,一个进程可能由多个线程组成。演示代码(C#为例): 1 using System; 2 using System.Collections.Generic; 3 using System.Linq; 4 using System.Text; 5 using System.Threading; 6 7 namespace ConsoleApplication3 8... 阅读全文

posted @ 2012-03-05 11:47 zhuguanhao 阅读(1528) 评论(0) 推荐(1) 编辑

导航