共用方式為


unique_lock::try_lock_for 方法

嘗試在不造成封鎖的情況下,取得關聯 mutex 的擁有權。

template<class Rep,
   class Period>
bool try_lock_for(
   const chrono::duration<Rep,
   Period>& Rel_time
);

參數

  • Rel_time
    這個 chrono::duration 物件指定方法在取得 mutex 的擁有權時所嘗試的時間上限。

傳回值

如果方法成功取得 mutex 的擁有權,就是 true,否則為 false。

備註

如果儲存的 mutex 指標是 null,其具 operation_not_permitted錯誤碼的方法會擲回 system_error

如果呼叫的執行緒已經擁有 mutex,具有 resource_deadlock_would_occur錯誤碼的方法會擲回 system_error

需求

標題: mutex

命名空間: std

請參閱

參考

unique_lock 類別

<mutex>