小知识点

线程:

//一个线程也可以使用它的Join方法来等待另一个线程结束:

Thread t = new Thread (Go);           // Assume Go is some static method
t.Start();
t.Join();                             // Wait (block) until thread t ends

 

posted on 2015-11-23 16:40  算顺网  阅读(137)  评论(0编辑  收藏  举报

导航