gpt4 book ai didi

c++ - boost::bind 和 io_service 的问题

转载 作者:搜寻专家 更新时间:2023-10-31 01:53:46 26 4
gpt4 key购买 nike

您好,我目前正在尝试为 io_service 对象创建一个线程池。

我还找到了如何执行此操作的示例(参见示例 1f:http://www.gamedev.net/blog/950/entry-2249317-a-guide-to-getting-started-with-boostasio?pg=2)

该示例当然也有效,但我宁愿尝试让 io_service 保持非全局(在示例中)。所以现在我考虑过尝试将 io_service 作为参数传递给工作线程,因此将其保留在“内部”。

boost::thread_group 似乎还不支持传递参数,所以我尝试用 boost::bind 来实现

结果代码看起来像这样:

void workerThread(io_service service)
{
service.run();
}

void initListeners() //this function gets called in the main function
{
io_service io_service;
//we give the io_service something to work here
boost::thread_group worker_threads;

for(int i = 0; i < 4; ++i)
worker_threads.create_thread(boost::bind(workerThread, io_service));

worker_threads.join_all();
}

但是当我尝试编译这段代码时,他给了我错误

error C2248: 'boost::noncopyable_::noncopyable::noncopyable' : cannot access private member declared in class 'boost::noncopyable_::noncopyable'

This diagnostic occurred in the compiler generated function 'boost::asio::io_service::io_service(const boost::asio::io_service &)'

这是否意味着我根本无法将 io_service 对象作为参数传递?

如果是,那么我如何在没有将 io_service 作为全局对象的情况下执行此线程池?
如果不是,那么用上面的代码解决这个问题的方法是怎样的?

最佳答案

您需要通过引用而不是通过值来传递 io_service:

io_service &service

作为参数和

boost::ref(io_service)

作为绑定(bind)参数。
请注意,您必须在 io_service 的生命周期结束之前加入所有线程,否则您将获得无效引用。

关于c++ - boost::bind 和 io_service 的问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10664796/

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