mirror of https://github.com/KaiserY/trpl-zh-cn
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
579 B
22 lines
579 B
3 years ago
|
enum List {
|
||
|
Cons(i32, Rc<List>),
|
||
|
Nil,
|
||
|
}
|
||
|
|
||
|
use crate::List::{Cons, Nil};
|
||
|
use std::rc::Rc;
|
||
|
|
||
|
// ANCHOR: here
|
||
|
fn main() {
|
||
|
let a = Rc::new(Cons(5, Rc::new(Cons(10, Rc::new(Nil)))));
|
||
|
println!("count after creating a = {}", Rc::strong_count(&a));
|
||
|
let b = Cons(3, Rc::clone(&a));
|
||
|
println!("count after creating b = {}", Rc::strong_count(&a));
|
||
|
{
|
||
|
let c = Cons(4, Rc::clone(&a));
|
||
|
println!("count after creating c = {}", Rc::strong_count(&a));
|
||
|
}
|
||
|
println!("count after c goes out of scope = {}", Rc::strong_count(&a));
|
||
|
}
|
||
|
// ANCHOR_END: here
|