gpt4 book ai didi

c++ - 在 C++ std::vector 之外的线程中启动可运行对象

转载 作者:塔克拉玛干 更新时间:2023-11-02 23:57:37 24 4
gpt4 key购买 nike

我有一个 C++11 程序,它配置了许多可运行的对象,将它们放在 std::vector 中,然后在单独的线程中启动它们。不幸的是,当我遍历 vector 中的对象时,我只会为最后一个对象启动线程。我在以下测试代码中提炼了问题的核心(在 OSX 10.9.5 上使用 clang 6.0 使用 clang++ -std=c++11 cpp_threadlaunch.cpp 编译) ).

#include <iostream>
#include <thread>
#include <vector>
#include <unistd.h>

std::mutex outputlock;

class agent {

public:
agent(std::string name) : m_name(name) {};
~agent(void) {};

void run(void) {
while (1) {
outputlock.lock();
std::cout << "Agent: " << m_name << std::endl;
outputlock.unlock();
sleep(1);
}
}
std::string getName(void) { return m_name; }

private:

std::string m_name;
};

int main()
{
std::vector<std::thread> threads;
std::vector<agent*> agents;
// std::string goal = "succeed";
std::string goal = "fail";

agents.push_back(new agent("A"));
agents.push_back(new agent("B"));

if (goal == "succeed") {

threads.push_back(std::thread([&]() { agents.at(0)->run(); }));
threads.push_back(std::thread([&]() { agents.at(1)->run(); }));

}
else {

for (auto it = agents.begin(); it != agents.end(); it++) {

agent* a = *it;

std::cout << "Launching thread for " << a->getName() << std::endl;

threads.push_back(std::thread([&]() { a->run(); }));
}
}

for (auto it = threads.begin(); it != threads.end(); it++) {

it->join();
}

exit(0);
}

当我以 goal = "succeed" 运行时,我得到了希望的输出

Agent: A
Agent: B
Agent: A
Agent: B

当我使用 goal = "fail" 运行时,我只从一个对象获得了输出的两份拷贝,而不是从每个对象获得输出:

Launching thread for A
Launching thread for B
Agent: B
Agent: B
Agent: B
Agent: B

我怀疑我在这里遗漏了一些基本的东西——如果有人能解释发生了什么以及解决方案是什么,我将不胜感激。谢谢——

最佳答案

您在循环中传递给 std::thread 的 lambda 函数通过引用捕获 a。由于 a 然后超出范围,您有未定义的行为。按值捕获它(使用 [=] 而不是 [&])。

关于c++ - 在 C++ std::vector 之外的线程中启动可运行对象,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34213183/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com