Open
Description
use std::cell::RefCell;
let rc: RefCell = RefCell::new(42);
let b1 = rc.borrow();
let b2 = rc.borrow();
在其 图片 https://rustx-labs.github.io/effective-rust-cn/images/item8/refcell.svg 中 b1,b2 为什么画成 胖指针? 哪位大佬能解释一下?
Metadata
Metadata
Assignees
Labels
No labels