C# Thread.Join()作用
Thread.Join()在MSDN中的解释:Blocks the calling thread until a thread terminates
阻塞calling thread,直到当前join的线程完成
什么是calling thread:开启新线程所在的线程
例如:在main函数创建一个线程ThreadA,那么calling thread就是main所在的线程(主线程),
ThreadA执行Join后,会阻塞Main函数,直到ThreadA完成。
更详细的例子参考该博主的博客,结合例子通俗易懂:https://www.cnblogs.com/jimmy-y/p/5363361.html