public member function
<mutex>

std::unique_lock::operator bool

explicit operator bool() const noexcept;
返回是否拥有锁
返回对象是否*拥有锁*。

如果管理的*互斥量对象*已被*采用*(即被锁定),并且自此未被*解锁*或*释放*,则此值为true

在所有其他情况下,此值为false

这是unique_lock::owns_lock的别名。

参数



返回值

如果对象拥有对所管理*互斥量对象*的锁,则为true
否则返回 false

示例

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
// unique_lock::operator= example
#include <iostream>       // std::cout
#include <vector>         // std::vector
#include <thread>         // std::thread
#include <mutex>          // std::mutex, std::unique_lock, std::try_to_lock

std::mutex mtx;           // mutex for critical section

void print_star () {
  std::unique_lock<std::mutex> lck(mtx,std::try_to_lock);
  // print '*' if successfully locked, 'x' otherwise: 
  if (lck)
    std::cout << '*';
  else                    
    std::cout << 'x';
}

int main ()
{
  std::vector<std::thread> threads;
  for (int i=0; i<500; ++i)
    threads.emplace_back(print_star);

  for (auto& x: threads) x.join();

  return 0;
}

可能的输出('x' 的数量 - 如果有的话 - 可能有所不同)

***********************************x*****x******************x*******************
****************x**x*x*x***x***x************************x**************x********
********************************************************************************
********************************************************************************
****************************************************************x***************
***x****************************************************************************
******x**********x**


数据竞争

访问 unique_lock 对象。
其管理的*互斥量对象*未被该操作访问。

异常安全

无异常保证: 绝不抛出异常。

另见