线程:
//一个线程也可以使用它的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) 编辑 收藏 举报