mirror of
https://github.com/KaiserY/trpl-zh-cn
synced 2025-02-24 21:32:15 +08:00
25 lines
525 B
Rust
Executable File
25 lines
525 B
Rust
Executable File
#[derive(Debug)]
|
|
enum List {
|
|
Cons(Rc<RefCell<i32>>, Rc<List>),
|
|
Nil,
|
|
}
|
|
|
|
use crate::List::{Cons, Nil};
|
|
use std::cell::RefCell;
|
|
use std::rc::Rc;
|
|
|
|
fn main() {
|
|
let value = Rc::new(RefCell::new(5));
|
|
|
|
let a = Rc::new(Cons(Rc::clone(&value), Rc::new(Nil)));
|
|
|
|
let b = Cons(Rc::new(RefCell::new(3)), Rc::clone(&a));
|
|
let c = Cons(Rc::new(RefCell::new(4)), Rc::clone(&a));
|
|
|
|
*value.borrow_mut() += 10;
|
|
|
|
println!("a after = {:?}", a);
|
|
println!("b after = {:?}", b);
|
|
println!("c after = {:?}", c);
|
|
}
|