gpt4 book ai didi

C++11 无法将 std::condition_variable::wait 从 'void' 转换为 'bool'

转载 作者:太空狗 更新时间:2023-10-29 20:57:56 25 4
gpt4 key购买 nike

我正在试用“The C++ Programming Language”第 4 版中的示例,特别是其中描述了如何使用 condition_variable。代码片段如下:

class Message { // object to be communicated
// ...
};
queue<Message> mqueue; // the queue of messages
condition_variable mcond; // the variable communicating events
mutex mmutex; // the locking mechanism


void consumer()
{
while(true) {
unique_lock<mutex> lck{mmutex}; // acquire mmutex
while (mcond.wait(lck)) /* do nothing */; // release lck and wait;
// re-acquire lck upon wakeup
auto m = mqueue.front(); // get the message
mqueue.pop();
lck.unlock(); // release lck
// ... process m ...
}
}

然而,在包含 mcond.wait(lck) 的行上编译失败:

错误:无法将“cond.std::condition_variable::wait((* & lck))”从“void”转换为“bool”

documentation for waitvoid 返回类型列出它。这是书中的错误吗(至少我在勘误表中找不到)?自本书问世以来(大约两年前),标准是否已更新?如果是这样,在这种情况下我应该如何正确使用 wait

我使用的是 Lubuntu 14.04 64 位,我的 gcc 版本是 4.9.2,我在 NetBeans 中编译它:

g++ -m64 -pthread -Wextra -c -g -Wall -std=c++11 -MMD -MP -MF "build/Debug/GNU-Linux-x86/main.o.d"-o build/Debug/GNU-Linux-x86/main.o main.cpp

编辑:我刚刚意识到这已经在 errata for the previous editions of the book 中被发现(我在发布这个问题之前忽略了检查,只引用了第 4 版)。我仍然希望它对遇到它的任何人都有用。

最佳答案

如果您等待超时(相对使用 wait_for() 或绝对使用 wait_until()),则返回类型将为 bool。否则,它看起来像是书中的一个简单错误。

关于C++11 无法将 std::condition_variable::wait 从 'void' 转换为 'bool',我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28914786/

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