You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
trpl-zh-cn/src/ch04-00-understanding-owner...

7 lines
517 B

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