RUST内存管理(二)-所有权.md
作者:互联网
所有权
rust通过所有权来管理内存的申请与释放,与gc和手动管理不同,走了第三条路。《rust所有权》原文地址
。
所有权的规则
先说明Rust中的所有权规则,如下:
- rust中每个值都有一个所有者(Each value in Rust has an owner)。
- 在同一时间只能有一个所有者(There can only be one owner at a time)。
- 离开所有者的作用域,删除值(When the owner goes out of scope, the value will be dropped)。
所有权与函数
标签:md,value,Rust,内存,owner,所有权,所有者,rust,RUST 来源: https://www.cnblogs.com/linga/p/16511670.html