當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


Rust Mutex.unlock用法及代碼示例


本文簡要介紹rust語言中 std::sync::Mutex.unlock 的用法。

用法

pub fn unlock(guard: MutexGuard<'_, T>)

立即放下防護,從而解鎖互斥鎖。

這個函數相當於在守衛上調用 drop ,但更多的是self-documenting。或者,當守衛超出範圍時將自動刪除。

#![feature(mutex_unlock)]

use std::sync::Mutex;
let mutex = Mutex::new(0);

let mut guard = mutex.lock().unwrap();
*guard += 20;
Mutex::unlock(guard);

相關用法


注:本文由純淨天空篩選整理自rust-lang.org大神的英文原創作品 std::sync::Mutex.unlock。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。