std::unique_lock::unlock
来自cppreference.com
< cpp | thread | unique lock
该页由英文版wiki使用Google Translate机器翻译而来。
该翻译可能存在错误或用词不当。鼠标停留在文本上可以看到原版本。你可以帮助我们修正错误或改进翻译。参见说明请点击这里. |
void unlock(); |
(C++11 起) | |
解锁相关的互斥体.
std::system_error被抛出,如果没有相关的互斥或如果没有被锁定的互斥.
原文:
std::system_error is thrown if there is no associated mutex or if the mutex is not locked.
目录 |
[编辑] 参数
(无)
[编辑] 返回值
(无)
[编辑] 例外
- mutex()->unlock()抛出的任何异常原文:Any exceptions thrown by mutex()->unlock()
- 如果没有相关的互斥体,std::system_error的错误代码std::errc::operation_not_permitted原文:If there is no associated mutex, std::system_error with an error code of std::errc::operation_not_permitted
- 如果互斥锁未锁定,std::system_error的std::errc::resource_deadlock_would_occur的错误代码原文:If the mutex is not locked, std::system_error with an error code of std::errc::resource_deadlock_would_occur
[编辑] 示例
本章尚未完成 原因:暂无示例 |
[编辑] 另请参阅
locks the associated mutex (公共成员函数) | |
断开相关的未解锁的互斥 原文: disassociates the associated mutex without unlocking it (公共成员函数) |