mirror of
https://github.com/rust-lang/rustlings.git
synced 2025-12-29 07:19:17 +00:00
12 lines
673 B
Markdown
12 lines
673 B
Markdown
# 智慧型指標
|
||
|
||
在 Rust 中,智慧型指標是包含記憶體位址並引用其他資料的變數,但它們還具有額外的元數據和功能。Rust 中的智慧型指標通常擁有它們指向的資料,而引用僅僅是借用資料。
|
||
|
||
## 進一步了解
|
||
|
||
- [智慧型指標](https://doc.rust-lang.org/book/ch15-00-smart-pointers.html)
|
||
- [使用 Box 指向堆上的資料](https://doc.rust-lang.org/book/ch15-01-box.html)
|
||
- [Rc<T>,引用計數智慧型指標](https://doc.rust-lang.org/book/ch15-04-rc.html)
|
||
- [共享狀態並發](https://doc.rust-lang.org/book/ch16-03-shared-state.html)
|
||
- [Cow 文檔](https://doc.rust-lang.org/std/borrow/enum.Cow.html)
|