智能指针起源于C++,并存在于其他语言。Rust 定义了多种不同的智能指针,并提供了多于引用的额外功能。
普通引用和智能指针:引用是一类只借用数据的指针;智能指针拥有他们指向的数据
使用 Box指向堆上的数据
使用场景:
当有一个在编译时未知大小的类型,而又想要在需要确切大小的上下文中使用这个类型值的时候
当有大量数据并希望在确保数据不被拷贝的情况下转移所有权的时候
当希望拥有一个值并只关心它的类型是否实现了特定 trait 而不是其具体类型的时候
可存储递归数据
1
2
3
4
5
6
7
8
9
10
11
12
enum List {
// 若不使用Box 则会犹豫无法计算内存大小而报错
// 通过使用Box 可以计算出,Cons 成员需要 Box指针 + 一个int32 大小的空间
Cons ( i32 , Box < List > ),
Nil ,
}
use crate ::List ::{ Cons , Nil };
fn main () {
let list = Cons ( 1 , Box ::new ( Cons ( 2 , Box ::new ( Cons ( 3 , Box ::new ( Nil ))))));
}
使用Deref trait 将智能指针当作常规引用处理
常规引用,类似于指针,可以通过解引用访问数据:
1
2
3
let x = 5 ;
let y = & x ;
assert_eq! ( 5 , * y ); // 解引用
Box 也可以使用解引用访问数据:
1
2
3
4
5
let x = 5 ;
let y = Box ::new ( x );
assert_eq! ( 5 , x );
assert_eq! ( 5 , * y );
自定义智能指针
类似于Box 的new方法, 通过 Deref trait 实现智能指针
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
use std ::ops ::Deref ;
struct MyBox < T > ( T );
impl < T > MyBox < T > {
fn new ( x : T ) -> MyBox < T > {
// 此处是数据的值类型
MyBox ( x )
}
}
impl < T > Deref for MyBox < T > {
type Target = T ;
fn deref ( & self ) -> & Self ::Target {
// 先获取第一个元素的指针,返回后可以通过解引用获取数据
& self . 0
}
}
// 实现解引用的trait
drop trait 实现清理代码
离开代码作用域时运行的trait方法; 离开作用域时自动执行; 类似于C++析构函数
离开drop调用顺序与定义顺序相反
不能显示调用 drop 方法; 可以通过 std::mem::drop 强制清理
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
struct CustomSmartPointer {
data : String ,
}
// 实现drop trait; 离开作用域时打印数据
impl Drop for CustomSmartPointer {
fn drop ( & mut self ) {
println! ( "Dropping CustomSmartPointer with data ` {} `!" , self . data );
}
}
fn main () {
let c = CustomSmartPointer {
data : String ::from ( "my stuff" ),
};
let d = CustomSmartPointer {
data : String ::from ( "other stuff" ),
};
println! ( "CustomSmartPointers created." );
// 执行顺序, 与定义顺序相反
// CustomSmartPointers created.
// Dropping CustomSmartPointer with data `other stuff`!
// Dropping CustomSmartPointer with data `my stuff`!
}
Rc 引用计数智能指针
多所有权需要显示的使用Rust类型 Rc;对上分配的内存供程序多个部分读取。单线程场景
离开作用域会自动减引用计数
1
2
3
4
5
6
7
8
9
10
11
12
13
14
enum List {
Cons ( i32 , Rc < List > ),
Nil ,
}
use crate ::List ::{ Cons , Nil };
use std ::rc ::Rc ;
fn main () {
let a = Rc ::new ( Cons ( 5 , Rc ::new ( Cons ( 10 , Rc ::new ( Nil )))));
// Rc::clone 只是增加引用计数,花费时间短,不进行深拷贝
let b = Cons ( 3 , Rc ::clone ( & a ));
let c = Cons ( 4 , Rc ::clone ( & a ));
}
RefCell和内部可变性模式
内部可变形是指:允许在不可变引用时,也可以改变数据。
通过unsafe代码模糊Rust的可变性和借用规则 (需要手动检查)
借用规则检查
对于Box 借用规则的不可变性在编译时可以确定;而RefCell则在运行时确定(所以在运行时可能引起panic)
三者的比较
Rc 允许相同数据有多个所有者;Box 和 RefCell 有单一所有者。
Box 允许在编译时执行不可变或可变借用检查;Rc仅允许在编译时执行不可变借用检查;RefCell 允许在运行时执行不可变或可变借用检查。
因为 RefCell 允许在运行时执行可变借用检查,所以我们可以在即便 RefCell 自身是不可变的情况下修改其内部的值。
常见用法
RefCell 与 Rc 结合使用,可以实现可变的多个引用。
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
#[derive(Debug)]
enum List {
Cons ( Rc < RefCell < i32 >> , Rc < List > ),
Nil ,
}
use crate ::List ::{ Cons , Nil };
use std ::cell ::RefCell ;
use std ::rc ::Rc ;
fn main () {
let value = Rc ::new ( RefCell ::new ( 5 ));
let a = Rc ::new ( Cons ( Rc ::clone ( & value ), Rc ::new ( Nil )));
// b, c 都引用了a,
let b = Cons ( Rc ::new ( RefCell ::new ( 3 )), Rc ::clone ( & a ));
let c = Cons ( Rc ::new ( RefCell ::new ( 4 )), Rc ::clone ( & a ));
* value . borrow_mut () += 10 ;
// 最后都看到可变引用 ,a,b,c 中的value值都变成了15
println! ( "a after = {:?} " , a );
println! ( "b after = {:?} " , b );
println! ( "c after = {:?} " , c );
}
引用循环导致内存泄漏
一个循环的列表;
此处的内存泄漏指:循环里分配了很多内存并占有很长时间,这个程序会使用多于它所需要的内存,并有可能压垮系统并造成没有内存可供使用;因为Rust 不能捕获类似的循环引用。
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
fn main () {
let a = Rc ::new ( Cons ( 5 , RefCell ::new ( Rc ::new ( Nil ))));
println! ( "a initial rc count = {} " , Rc ::strong_count ( & a ));
println! ( "a next item = {:?} " , a . tail ());
let b = Rc ::new ( Cons ( 10 , RefCell ::new ( Rc ::clone ( & a ))));
println! ( "a rc count after b creation = {} " , Rc ::strong_count ( & a ));
println! ( "b initial rc count = {} " , Rc ::strong_count ( & b ));
println! ( "b next item = {:?} " , b . tail ());
if let Some ( link ) = a . tail () {
* link . borrow_mut () = Rc ::clone ( & b );
}
// 引用计数都变成了2
println! ( "b rc count after changing a = {} " , Rc ::strong_count ( & b ));
println! ( "a rc count after changing a = {} " , Rc ::strong_count ( & a ));
}
避免引用循环:将 Rc 变为 Weak
使用Weak 描述了非所属关系的引用,回收时不会重复回收,这样可以打破引用循环。
1
2
3
4
5
6
7
8
9
10
use std ::cell ::RefCell ;
use std ::rc ::{ Rc , Weak };
#[derive(Debug)]
struct Node {
value : i32 ,
// 父节点弱引用, 可以引用父节点,但不拥有父节点
parent : RefCell < Weak < Node >> ,
children : RefCell < Vec < Rc < Node >>> ,
}
相关文章