c++ - 多线程中的join先后顺序问题
迷茫
迷茫 2017-04-17 11:44:27
0
2
957

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++

迷茫
迷茫

业精于勤,荒于嬉;行成于思,毁于随。

Antworte allen(2)
伊谢尔伦

join阻塞的是调用join函数的所在线程,其目的是等待并确认t1 t2线程执行结束,它无法保证多线程的先后执行顺序。类似于进程的waitpid函数。能控制线程执行顺序的就是线程mutex和condition

迷茫

join的功能是“确定被join的线程已经结束”,和线程执行顺序没关系。

Beliebte Tutorials
Mehr>
Neueste Downloads
Mehr>
Web-Effekte
Quellcode der Website
Website-Materialien
Frontend-Vorlage
Über uns Haftungsausschluss Sitemap
Chinesische PHP-Website:Online-PHP-Schulung für das Gemeinwohl,Helfen Sie PHP-Lernenden, sich schnell weiterzuentwickeln!