// each thread starts out with the initial value of 1 lett = thread::spawn(move|| { FOO.with(|f| { assert_eq!(*f.borrow(), 1); // 这里对于基本类型需要解引用,复合类型不需要 *f.borrow_mut() = 3; }); });
// wait for the thread to complete and bail out on panic t.join().unwrap();
// we retain our original value of 2 despite the child thread FOO.with(|f| { assert_eq!(*f.borrow(), 2); });