join会阻塞当前线程,但是如下实例的输出:
thread t1([](){
this_thread::sleep_for(chrono::milliseconds(500));
cout<<"t1"<<endl;
});
thread t2([](){
cout<<"t2"<<endl;
});
t1.join();
cout<<"main"<<endl;
t2.join();
输入先后为什么是:t2 t1 main
编译工具:clang++
join阻塞的是呼叫join函數的所在線程,其目的是等待並確認t1 t2線程執行結束,它無法保證多線程的先後執行順序。類似進程的waitpid函數。能控制執行緒執行順序的就是執行緒mutex和condition
join
的功能是“確定被join的執行緒已經結束”,和執行緒執行順序沒關係。