std::timed_mutex::lock
来自 cppreference.com
< cpp | thread | timed mutex
void lock(); |
(自 C++11 起) | |
锁定互斥锁。如果另一个线程已经锁定了互斥锁,则调用 lock
将阻塞执行,直到获得锁。
如果 lock
被已经拥有 mutex
的线程调用,则行为未定义:例如,程序可能会死锁。鼓励能够检测到无效用法的实现抛出带有错误条件 resource_deadlock_would_occur
的 std::system_error,而不是死锁。
对同一个互斥锁的先前 unlock() 操作与(如 std::memory_order 中定义的)此操作同步。
内容 |
[编辑] 参数
(无)
[编辑] 返回值
(无)
[编辑] 异常
当发生错误时抛出 std::system_error,包括来自底层操作系统的错误,这些错误会阻止 lock
满足其规范。在抛出任何异常的情况下,互斥锁不会被锁定。
[编辑] 注释
lock()
通常不会直接调用:std::unique_lock、std::scoped_lock 和 std::lock_guard 用于管理独占锁定。
[编辑] 示例
此示例显示了如何使用 lock
和 unlock
来保护共享数据。
运行此代码
#include <chrono> #include <iostream> #include <mutex> #include <thread> int g_num = 0; // protected by g_num_mutex std::mutex g_num_mutex; void slow_increment(int id) { for (int i = 0; i < 3; ++i) { g_num_mutex.lock(); ++g_num; // note, that the mutex also syncronizes the output std::cout << "id: " << id << ", g_num: " << g_num << '\n'; g_num_mutex.unlock(); std::this_thread::sleep_for(std::chrono::milliseconds(234)); } } int main() { std::thread t1{slow_increment, 0}; std::thread t2{slow_increment, 1}; t1.join(); t2.join(); }
可能的输出
id: 0, g_num: 1 id: 1, g_num: 2 id: 1, g_num: 3 id: 0, g_num: 4 id: 0, g_num: 5 id: 1, g_num: 6
[编辑] 另请参见
尝试锁定互斥锁,如果互斥锁不可用则返回 (公有成员函数) | |
尝试锁定互斥锁,如果互斥锁在指定超时时间内一直不可用则返回 unavailable for the specified timeout duration (公有成员函数) | |
尝试锁定互斥锁,如果互斥锁在指定超时时间内一直不可用则返回 一直不可用,直到达到指定的时刻 unavailable until specified time point has been reached | |
unlock 解锁互斥锁 | |
(公有成员函数)
|