<예제 코드_1>
#[derive(Debug)]
enum List {
Cons(Rc<RefCell<i32>>, Rc<List>),
Nil,
}
use List::{Cons, Nil};
use std::rc::Rc;
use std::cell::RefCell;
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(6)), Rc::clone(&a));
let c = Cons(Rc::new(RefCell::new(10)), Rc::clone(&a));
*value.borrow_mut() += 10;
println!("a after = {:?}", a);
println!("b after = {:?}", b);
println!("c after = {:?}", c);
}
<참조 1> https://rinthel.github.io/rust-lang-book-ko/ch15-05-interior-mutability.html
<참조 2>
'Rust' 카테고리의 다른 글
[Rust] Concurrency : Thread 예제 (41일차) (0) | 2023.01.24 |
---|---|
[Rust] Circular Reference (순환 참조) 예제 (40일차) (0) | 2023.01.23 |
[Rust] Rc<T> 참조 카운팅 스마트 포인터 예제 (38일자) (0) | 2023.01.21 |
[Rust] Ownership(소유권) 기초 예제 : &str (37일차) (0) | 2023.01.20 |
댓글