我一直在阅读有关线程同步的提升条件变量但是我只能访问类boost::condition_variable
而不是boost::condition
我得到的
'condition is not a member of boost'
有关可能发生的事情的任何建议?我需要下载一些东西吗?我正在使用VS2010并提升1.47
答案 0 :(得分:3)
#include <boost/thread/condition.hpp>
typedef condition_variable_any condition;
提供typedef条件是为了向后兼容以前的boost版本。
请注意,自Boost 1.52.0开始,这已被弃用,支持condition_variable_any
。