线程引用需要静态生存期?

时间:2015-10-06 23:25:27

标签: multithreading rust lifetime

虽然直觉上传递给生成的线程的引用需要有静态生命周期,但我不清楚究竟是什么让以下代码无法编译:

use std::sync::Arc;
use std::sync::Mutex;

struct M;

fn do_something(m : Arc<Mutex<&M>>) {
    println!("Ha, do nothing!");
}

fn main() {
    let a = M;
    {
        let c : Arc<Mutex<&M>> = Arc::new(Mutex::new(&a));
        for i in 0..2 {
            let c_clone = c.clone();
            ::std::thread::spawn(move || do_something(c_clone));
        }
    }
}

编译这个小程序会出现以下错误:

$ rustc -o test test.rs
test.rs:13:55: 13:56 error: `a` does not live long enough
test.rs:13         let c : Arc<Mutex<&M>> = Arc::new(Mutex::new(&a));
                                                             ^
note: reference must be valid for the static lifetime...

在我看来,变量a将超出c_clone,这在这种情况下是重要的......?希望有人能帮助我理解我所缺少的东西!

1 个答案:

答案 0 :(得分:5)

从本质上讲,ArcMutex包装是多余的:您正在向本地堆栈上的某些内容传递引用。当你用std::thread::spawn生成一个线程时,没有什么可以将生命周期联系在一起;主线程完全可以自由地结束并释放其中的任何内容 - 在这种情况下,包括a - 在任何其他线程产生之前甚至 start 执行;因此,在这种情况下,a可以在生成的线程执行任何操作时引用释放的内存,将c_clone作为悬空指针。这就是生成线程闭包的环境必须是'static

的原因