我正在学习使用线程。我发现我可以使用以下内容

mutex mx;

void func(int id)
{
    mx.lock();
    cout << "hey , thread:"<<id << "!" << endl;
    mx.unlock();
}
int main(){
    vector<thread> threads;
    for(int i = 0 ; i < 5 ; i++)
        threads.emplace_back(thread(func , i));
    for(thread & t : threads)
        t.join();
    return 0;
}


虽然我不能在main()中做

for(int i = 0 ; i < 5 ; i ++)
{
    thread t(func , i);
    threads.emplace_back(t);
}


有人可以解释一下吗?

最佳答案

您需要移动对象:

thread t(func, i);
threads.push_back(std::move(t));


emplace也可以,但是push_back在这种情况下是惯用的。当然是#include <utility>

关于c++ - 与线程相关的问题,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/21321755/

10-11 15:55