跳到主要内容

C++ 线程阻塞

阐述

等待另一个线程执行完之后,再执行本线程的其余部分。

实例

在 C++ 中,调用 join() 方法:

std::thread th1(func);
...
th1.join();

相关内容

性质

参考文献