gpt4 book ai didi

c++ - 带 if 条件的作用域锁

转载 作者:塔克拉玛干 更新时间:2023-11-03 01:18:39 25 4
gpt4 key购买 nike

我想创建作用域锁,但我想要类似的东西:

{
if(lockRequired)
boost::mutex::scoped_lock(Mutex); //After this line we go out of scope
/* Here I also want to have Mutex */
}

如果条件为真,我想要锁定互斥锁,但在升级范围内。我知道我可以使用简单的 .lock 并在范围末尾使用 .unlock 但我有很多返回路径。我还可以在范围内创建一些 SynchronizationGuard 并且 whed 析构函数被称为 unlock mutex 但这不是干净的解决方案。一些建议?

最好的问候。

最佳答案

使用三元运算符。

boost::mutex::scoped_lock lock = lockRequired ? 
boost::mutex::scoped_lock(Mutex) : boost::mutex::scoped_lock();

或者只是在条件下使用swap

boost::mutex::scoped_lock lock;
if (lockRequired)
{
boost::mutex::scoped_lock lock_(Mutex);
lock.swap(lock_);
}

或者用defer_lock_t构造锁,然后调用lock函数。

boost::mutex::scoped_lock lock(Mutex, boost::defer_lock);
if (lockRequired)
{
lock.lock();
}

关于c++ - 带 if 条件的作用域锁,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28607401/

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