Skip to content

Latest commit

 

History

History
16 lines (9 loc) · 216 Bytes

File metadata and controls

16 lines (9 loc) · 216 Bytes

16.语法面面观:智能指针(下)

智能指针的用处

  1. 自动解引用
  2. 自动化管理内存

标准库的智能指针

  1. Box
  2. Vec 和String
  3. Rc 和 Arc
  4. HashMap<K,V>