unique_lock::try_lock_for 方法
不會封鎖,嘗試取得相關聯 mutex 的擁有權。
template<class Rep,
class Period>
bool try_lock_for(
const chrono::duration<Rep,
Period>& Rel_time
);
參數
- Rel_time
指定最大時間方法嘗試取得 mutex的擁有權的 chrono::duration 物件。
傳回值
true ,如果方法成功接收 mutex的擁有權;則為,否則為 false。
備註
如果儲存的 mutex 指標是 null,其具 operation_not_permitted錯誤碼的方法會擲回 system_error 。
如果呼叫的執行緒已經擁有 mutex,具有 resource_deadlock_would_occur錯誤碼的方法會擲回 system_error 。
需求
標題: Mutex
命名空間: 可以