摘要:
Cell: 可以改变值, 不需要 mut 修饰 (inherited mutability). let x = Cell:new(100); x.set(10); 有些时候必须要使用 interior mutability, 比如 Rc::Clone 时修改引用计数. RefCell: 运行时 bo 阅读全文
摘要:
Cell: 可以改变值, 不需要 mut 修饰 (inherited mutability). let x = Cell:new(100); x.set(10); 有些时候必须要使用 interior mutability, 比如 Rc::Clone 时修改引用计数. RefCell: 运行时 bo 阅读全文
|