假设总共有thread1,thread2,thread3三个线程(当然加上主线程就是四个线程)
thread1被主线程调用thread1.join()
thread1.join()会使得主线程(即调用thread1.join()的线程)阻塞,进入等待池,但是并不会影响此时其他处在运行状态的线程thread2和thread3,等thread1执行完毕,主线程才会被唤醒
假设总共有thread1,thread2,thread3三个线程(当然加上主线程就是四个线程)
thread1被主线程调用thread1.join()
thread1.join()会使得主线程(即调用thread1.join()的线程)阻塞,进入等待池,但是并不会影响此时其他处在运行状态的线程thread2和thread3,等thread1执行完毕,主线程才会被唤醒