Cell๊ณผ RefCell

Cell and RefCell implement what Rust calls interior mutability: mutation of values in an immutable context.

Cell์€ ๊ฐ„๋‹จํ•œ ํƒ€์ž…์— ๋Œ€ํ•ด์„œ ์ฃผ๋กœ ์‚ฌ์šฉ๋ฉ๋‹ˆ๋‹ค. ์™œ๋ƒํ•˜๋ฉด Cell์— ์žˆ๋Š” ๊ฐ’์„ ์ฝ๊ฑฐ๋‚˜ ์“ธ๋•Œ์—๋Š” ๋ณต์‚ฌ ํ˜น์€ ์ด๋™์„ ํ•ด์•ผ๋งŒ ํ•˜๊ธฐ ๋•Œ๋ฌธ์ž…๋‹ˆ๋‹ค. ๋ณต์žกํ•œ ํƒ€์ž…์ด๋ผ๋ฉด RefCell์ด ๋” ๋ณดํŽธ์ ์ž…๋‹ˆ๋‹ค. ์ด๋ฅผ ์ด์šฉํ•˜๋ฉด ์ฐธ์กฐ๋ฅผ ํ†ตํ•ด ๊ฐ’์„ ์ฝ๊ฑฐ๋‚˜ ์“ฐ๊ฒŒ ํ•ด ์ฃผ๋Š” ๋Œ€์‹ , ๊ทธ ์ฐธ์กฐ๋“ค์ด ์˜ฌ๋ฐ”๋ฅธ์ง€๋ฅผ ๋Ÿฐํƒ€์ž„์— ์ฒดํฌํ•˜๊ณ , ์ œ๋Œ€๋กœ ์‚ฌ์šฉ๋˜์ง€ ์•Š์„ ๊ฒฝ์šฐ ํŒจ๋‹‰์„ ๋ฐœ์ƒ์‹œํ‚ต๋‹ˆ๋‹ค.

use std::cell::RefCell;
use std::rc::Rc;

#[derive(Debug, Default)]
struct Node {
    value: i64,
    children: Vec<Rc<RefCell<Node>>>,
}

impl Node {
    fn new(value: i64) -> Rc<RefCell<Node>> {
        Rc::new(RefCell::new(Node { value, ..Node::default() }))
    }

    fn sum(&self) -> i64 {
        self.value + self.children.iter().map(|c| c.borrow().sum()).sum::<i64>()
    }
}

fn main() {
    let root = Node::new(1);
    root.borrow_mut().children.push(Node::new(5));
    let subtree = Node::new(10);
    subtree.borrow_mut().children.push(Node::new(11));
    subtree.borrow_mut().children.push(Node::new(12));
    root.borrow_mut().children.push(subtree);

    println!("graph: {root:#?}");
    println!("graph sum: {}", root.borrow().sum());
}
  • ์ด ์˜ˆ์ œ์—์„œ RefCell๋Œ€์‹  Cell์„ ์ผ์—ˆ๋‹ค๋ฉด, Node์— ์ž์‹ ๋…ธ๋Š๋ฅผ ์ถ”๊ฐ€ํ•˜๊ธฐ ์œ„ํ•ด์„œ, Node๋ฅผ Rc๋ฐ–์œผ๋กœ ์ด๋™์‹œํ‚จ ๋‹ค์Œ, ์ž์‹ ๋…ธ๋“œ๋ฅผ ์ถ”๊ฐ€ํ•˜๊ณ , ๋‹ค์‹œ Rc์•ˆ์œผ๋กœ ์ด๋™์‹œ์ผœ์•ผ ํ–ˆ์„ ๊ฒ๋‹ˆ๋‹ค. ์ด๋ ‡๊ฒŒ ํ•ด์•ผ๋งŒ ํ•˜๋Š” ์ด์œ ๋Š” ์•ˆ์ „ ๋•Œ๋ฌธ์ž…๋‹ˆ๋‹ค. Cell ๋‚ด๋ถ€์˜ ๊ทธ ๊ฐ’์ด ์˜ค์ง ํ•˜๋‚˜ ์กด์žฌํ•˜๋ฉฐ, ๊ทธ ๊ฐ’์— ๋Œ€ํ•œ ์ฐธ์กฐ๊ฐ€ ์—†๋‹ค๋Š” ๊ฒƒ์ด ๋ณด์žฅ๋˜๊ธฐ ๋•Œ๋ฌธ์ž…๋‹ˆ๋‹ค. ๋ฌผ๋ก  ํŽธ๋ฆฌํ•˜์ง€๋Š” ์•Š์Šต๋‹ˆ๋‹ค.
  • ๋…ธ๋“œ๋ฅผ ์ด๋™ํ•˜๊ฑฐ๋‚˜ ๋ณต์‚ฌํ•˜์ง€ ์•Š๊ณ  ๊ทธ๋Œ€๋กœ ์‚ฌ์šฉํ•˜๊ธฐ ์œ„ํ•ด์„œ๋Š” RefCell๋กœ ๊ฐ์‹ผ๋‹ค์Œ borrow๋‚˜ borrow_mut๋ฉ”์„œ๋“œ๋ฅผ ์ด์šฉํ•ด์•ผ ํ•ฉ๋‹ˆ๋‹ค.
  • root๋ฅผ subtree.children์— ์ถ”๊ฐ€ํ•ด์„œ ์ˆœํ™˜ ์ฐธ์กฐ๊ฐ€ ์ƒ๊ธธ ์ˆ˜ ์žˆ์Œ์„ ๋ณด์—ฌ์ฃผ์„ธ์š” (๊ทธ๋ž˜ํ”„๋ฅผ ์ถœ๋ ฅํ•˜์ง€๋Š” ๋งˆ์„ธ์š”!).
  • self.value๋ฅผ ์ฆ๊ฐ€์‹œํ‚ค๋Š” ๋ฉ”์„œ๋“œ์ธfn inc(&mut self)๋ฅผ ์ถ”๊ฐ€ํ•˜๊ณ  ๊ทธ ๋ฉ”์„œ๋“œ๋ฅผ ์ž์‹๋…ธ๋“œ์—์„œ ํ˜ธ์ถœํ•˜์„ธ์š”. ๊ทธ๋Ÿฌ๋ฉด thread 'main' panicked at 'already borrowed: BorrowMutError' ๋Ÿฐํƒ€์ž„ ํŒจ๋‹‰์ด ๋ฐœ์ƒํ•จ์„ ๋ณด์ด์„ธ์š”.