gpt4 book ai didi

c++ - Boost文档声明

转载 作者:行者123 更新时间:2023-11-28 07:35:46 25 4
gpt4 key购买 nike

使用 boost 在线文档时。例如:http://www.boost.org/doc/libs/1_34_1/doc/html/boost/mutex.html

我找不到应该指定的声明部分:我需要包含哪个文件才能使用特定类?我需要链接哪些库?

虽然我可以从 Internet 上的随机代码片段中获取此信息,但是否有一些中心位置(如 MSDN)我可以查询此信息?

最佳答案

您使用的是非常的旧文档。看看 recent version :

#include <boost/thread/mutex.hpp>

class mutex:
boost::noncopyable
{
public:
mutex();
~mutex();

void lock();
bool try_lock();
void unlock();

typedef platform-specific-type native_handle_type;
native_handle_type native_handle();

typedef unique_lock<mutex> scoped_lock;
typedef unspecified-type scoped_try_lock;
};

另见 Using and building the library 部分。

关于c++ - Boost文档声明,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16809697/

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