Make great things

What I cannot create, I do not understand.

  博客园  :: 首页  :: 新随笔  :: 联系 :: 订阅 订阅  :: 管理

2021年1月18日

摘要: Cell: 可以改变值, 不需要 mut 修饰 (inherited mutability). let x = Cell:new(100); x.set(10); 有些时候必须要使用 interior mutability, 比如 Rc::Clone 时修改引用计数. RefCell: 运行时 bo 阅读全文
posted @ 2021-01-18 15:13 wbin91 阅读(80) 评论(0) 推荐(0) 编辑