C++ 参考手册
- C++11
- C++14
- C++17
- C++20
- C++ 编译器支持情况表
- 独立与宿主实现
- C++ 语言
- C++ 关键词
- 预处理器
- C++ 标准库头文件
- 具名要求
- 功能特性测试 (C++20)
- 工具库
- 类型支持(基本类型、RTTI、类型特性)
- 概念库 (C++20)
- 错误处理
- 动态内存管理
- 日期和时间工具
- 字符串库
- 容器库
- 迭代器库
- 范围库 (C++20)
- 算法库
- 数值库
- 输入/输出库
- 文件系统库
- 本地化库
- 正则表达式库
- 原子操作库
- 线程支持库
- std::shared_timed_mutex
- std::shared_lock
- std::swap(std::shared_lock)
- std::shared_lock<Mutex>::release
- std::shared_lock<Mutex>::mutex
- std::shared_lock<Mutex>::owns_lock
- std::shared_lock<Mutex>::operator bool
- std::shared_lock<Mutex>::try_lock_for
- std::shared_lock<Mutex>::try_lock_until
- std::shared_lock<Mutex>::unlock
- std::shared_lock<Mutex>::swap
- std::shared_lock<Mutex>::shared_lock
- std::shared_lock<Mutex>::~shared_lock
- std::shared_lock<Mutex>::operator=
- std::shared_lock<Mutex>::lock
- std::shared_lock<Mutex>::try_lock
- std::thread
- std::stop_token
- std::stop_source
- std::stop_callback
- std::this_thread::get_id
- std::lock_guard
- std::hardware_destructive_interference_size, std::hardware_constructive_interference_size
- std::counting_semaphore, std::binary_semaphore
- std::jthread
- cpp/thread/barrier
- std::future
- std::this_thread::yield
- std::this_thread::sleep_for
- std::this_thread::sleep_until
- std::mutex
- std::recursive_mutex
- std::shared_mutex
- std::timed_mutex
- std::recursive_timed_mutex
- std::scoped_lock
- std::unique_lock
- std::defer_lock_t, std::try_to_lock_t, std::adopt_lock_t
- std::lock
- std::try_lock
- std::defer_lock, std::try_to_lock, std::adopt_lock
- std::once_flag
- std::call_once
- std::condition_variable
- std::condition_variable_any
- std::notify_all_at_thread_exit
- std::cv_status
- std::latch
- std::promise
- std::shared_future
- std::packaged_task
- std::async
- std::launch
- std::future_status
- std::future_error
- std::future_category
- std::future_errc
- 注释
- 实验性 C++ 特性
- 有用的资源
- 索引
- std 符号索引
- 协程支持 (C++20)
- C++ 关键词
位置:首页 > C++ 参考手册 >线程支持库 >std::shared_lock > std::shared_lock<Mutex>::shared_lock
std::shared_lock<Mutex>::shared_lock
shared_lock() noexcept; |
(1) | (C++14 起) |
shared_lock( shared_lock&& other ) noexcept; |
(2) | (C++14 起) |
explicit shared_lock( mutex_type& m ); |
(3) | (C++14 起) |
shared_lock( mutex_type& m, std::defer_lock_t t ) noexcept; |
(4) | (C++14 起) |
shared_lock( mutex_type& m, std::try_to_lock_t t ); |
(5) | (C++14 起) |
shared_lock( mutex_type& m, std::adopt_lock_t t ); |
(6) | (C++14 起) |
template< class Rep, class Period > shared_lock( mutex_type& m, |
(7) | (C++14 起) |
template< class Clock, class Duration > shared_lock( mutex_type& m, |
(8) | (C++14 起) |
构造 shared_lock
,可选地锁定提供的互斥。
1) 构造
shared_lock
,不关联互斥。2) 移动构造函数。以
other
的内容初始化 shared_lock
。令 other
不关联到互斥。3-8) 构造
shared_lock
,以 m
为关联的互斥。另外:3) 通过调用 m.lock_shared() ,以共享模式锁定关联的互斥。若此线程已以任何模式占有互斥则行为未定义。
4) 不锁定关联的互斥。
5) 尝试通过调用 m.try_lock_shared() ,以共享模式锁定关联的互斥而不阻塞。若此线程已以任何模式占有互斥则行为未定义。
6) 假设调用方线程已以共享模式占有
m
。7) 尝试通过调用 m.try_lock_shared_until(timeout_duration) ,以共享模式锁定关联的互斥,这会阻塞直到经过指定的
timeout_duration
或取得锁,两者的先到来者。可能锁定长于 timeout_duration
。若此线程已以任何模式占有互斥则行为未定义。8) 尝试通过调用 m.try_lock_shared_for(timeout_time) ,以共享模式锁定关联的互斥,这会阻塞直到抵达指定的
timeout_time
或取得锁,两者的先到来者。可能锁定长于到抵达 timeout_time
为止。若此线程已以任何模式占有互斥则行为未定义。参数
other | - | 以之初始化状态的另一 shared_lock
|
m | - | 关联到所的互斥,可选地获得其所有权 |
t | - | 用于选择不同锁定策略的标签参数 |
timeout_duration | - | 要阻塞的最大时长 |
timeout_time | - | 要阻塞到的最大时间点 |
示例
运行此代码
#include <shared_mutex> #include <iostream> #include <thread> #include <chrono> std::shared_timed_mutex m; int i = 10; void read() { // 两个线程都获得对整数 i 的访问 std::shared_lock<std::shared_timed_mutex> slk(m); std::cout << "read i as " << i << "...\n"; // 此不同步 std::this_thread::sleep_for(std::chrono::milliseconds(10)); std::cout << "woke up...\n"; } int main() { std::thread r1(read); std::thread r2(read); r1.join(); r2.join(); return 0; }