所有权
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)。
所有权与函数
原创文章,作者:506227337,如若转载,请注明出处:https://blog.ytso.com/276435.html