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


Rust thread_local用法及代碼示例


本文簡要介紹rust語言中 Macro std::thread_local 的用法。

用法

macro_rules! thread_local {
    () => { ... };
    ($(#[$attr : meta]) * $vis : vis static $name : ident : $t : ty = const
 { $init : expr } ; $($rest : tt) *) => { ... };
    ($(#[$attr : meta]) * $vis : vis static $name : ident : $t : ty = const
 { $init : expr }) => { ... };
    ($(#[$attr : meta]) * $vis : vis static $name : ident : $t : ty = $init : expr
 ; $($rest : tt) *) => { ... };
    ($(#[$attr : meta]) * $vis : vis static $name : ident : $t : ty = $init :
 expr) => { ... };
}

聲明類型為 std::thread::LocalKey 的新線程本地存儲鍵。

用法

該宏包裝了任意數量的靜態聲明並使它們成為線程本地的。允許每個靜態的宣傳和屬性。例子:

use std::cell::RefCell;
thread_local! {
    pub static FOO: RefCell<u32> = RefCell::new(1);

    #[allow(unused)]
    static BAR: RefCell<f32> = RefCell::new(1.0);
}

有關更多信息,請參閱LocalKey 文檔。

相關用法


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