多线程中的join先后顺序问题


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

thread C++

唐伯虎点雷管 9 years, 8 months ago

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

代号罪 answered 9 years, 8 months ago

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

凉风吹过de夜 answered 9 years, 8 months ago

Your Answer