有没有在boost 1.48.0下使用互斥的最新例子?

时间:2011-11-17 22:45:16

标签: c++ multithreading boost mutex

我在网上找到的大多数示例都已过时,使用boost :: mutex,我没有宣布包括或者。有没有明确的例子说明如何在ver 1.48.0中使用boost :: mutex? The tutorials in Chapter 27 (Threads)非常不清楚,不提供任何代码示例。

1 个答案:

答案 0 :(得分:13)

选中此示例(boost::mutex中显示Resource::use()用法):

#include <boost/thread.hpp>
#include <boost/bind.hpp>

class Resource
{
public:
    Resource(): i(0) {}

    void use()
    {
        boost::mutex::scoped_lock lock(guard);
        ++i;
    }

private:
    int i;
    boost::mutex guard;
};

void thread_func(Resource& resource)
{
    resource.use();
}

int main()
{
    Resource resource;
    boost::thread_group thread_group;
    thread_group.create_thread(boost::bind(thread_func, boost::ref(resource)));
    thread_group.create_thread(boost::bind(thread_func, boost::ref(resource)));
    thread_group.join_all();
    return 0;
}