trpl-zh-cn/src/ch04-00-understanding-ownership.md
2018-01-15 23:08:00 +08:00

7 lines
525 B
Markdown
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

# 认识所有权
> [ch04-00-understanding-ownership.md](https://github.com/rust-lang/book/blob/master/second-edition/src/ch04-00-understanding-ownership.md)
> <br>
> commit 4f2dc564851dc04b271a2260c834643dfd86c724
所有权(系统)是 Rust 最独特的功能,其令 Rust 无需垃圾回收garbage collector即可保障内存安全。因此理解 Rust 中所有权如何工作是十分重要的。本章我们将讲到所有权以及相关功能借用、slice 以及 Rust 如何在内存中布局数据。