欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

C#多线程之Thread中Thread.Join()函数用法分析

程序员文章站 2022-10-15 15:28:18
本文实例讲述了c#多线程之thread中thread.join()函数用法。分享给大家供大家参考。具体分析如下: thread.join()在msdn中的解释:block...

本文实例讲述了c#多线程之thread中thread.join()函数用法。分享给大家供大家参考。具体分析如下:

thread.join()在msdn中的解释:blocks the calling thread until a thread terminates

当newthread调用join方法的时候,mainthread就被停止执行,
直到newthread线程执行完毕。

thread othread = new thread(new threadstart(oalpha.beta));
othread.start(); 
while (!othread.isalive) //表示线程当前是否为可用状态
   thread.sleep(1);
othread.abort(); //终止线程
othread.join(); //主线程被停止,直到当前线程执行完毕
console.writeline();

希望本文所述对大家的c#程序设计有所帮助。