Rust的所有权与变量遮蔽有关,与C++的移动语义还是有一些区别。比如在C++下述操作中const变量d
和j
并不会随std::move
而清空:
1 2 3 4 5 6 7 8 9
| std::string a{"1"}; std::string b{"12"}; std::string c{"123"}; std::string const d{"1234"}; std::string i{std::move(a)}; i = std::move(b); i = std::move(d); std::string const j{std::move(c)}; std::string const k{std::move(j)};
|
对于引用:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
| std::string a{"1"}; std::string b{"12"}; std::string c{"123"}; std::string const d{"1234"}; std::string &g = a;
std::string const& h = a;
std::string &&i{std::move(a)}; i += "5"; i = std::move(b); i += "6";
i = std::move(d); i += "7"; std::string const &&j{std::move(c)}; std::string const &&k{std::move(j)}; std::string const &&l{std::move(d)};
|
而rust则通过所有权消除了模糊的部分:
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
| let mut a = String::from("1"); let mut b = String::from("12"); let mut c = String::from("123"); let d = String::from("1234"); let g = &mut a;
let h = &a; println!("h: {}", h);
let mut i = a; i += "5";
println!("i: {}", i); i = b; i += "6";
println!("i: {}", i);
i = d; i += "7";
let j = c;
let k = j;
|
通过对比,可以感觉到Rust的所有权机制的确是一个比较不错的设计,在所有权的原语下,我们有更为彻底的移动语义,我们不必再引入右值引用,由此而产生的引用折叠,万能引用,完美转发、RVO、NRVO、复制省略、临时量实质化、值类别、左值、将亡值、纯右值、泛左值(左值+将亡值)、右值(将亡值+纯右值)、将不必再过分考虑。不过unsafe则像一个深渊,又要包装又要安全性,造成的上手难度比单纯的C指针似乎更大。或许我们需要的是一种可选性的渐进安全的语言标准。或许一个语言如果太像C++就可能会分裂与复杂。或许人们希望的是一门简洁但具有表达能力同时又具有一致性的语言,就像类型论与集合论一样。不知道这些问题会不会随着类型论和线性类型的发展与理解而得到解决。当然以上都可以看作是一个名词党的胡言乱语。
C++ 指针、引用
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 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112
| #include <iostream> #include <string>
void test0() { std::string a{"1"}; a += "2"; std::string b{a}; b += "3"; std::string c{b}; c += "4"; std::string const d{c}; std::string *e = &a; printf("*e: %s\n", e->c_str()); e = &b; printf("*e: %s\n", e->c_str()); std::string const *f = &a; printf("*f: %s\n", f->c_str()); f = &c; printf("*f: %s\n", f->c_str()); std::string *const g = &a; printf("*g: %s\n", g->c_str()); std::string const *const h = &a; printf("*h: %s\n", h->c_str()); }
void test1() { std::string a{"1"}; a += "2"; std::string b{a}; b += "3"; std::string c{b}; c += "4"; std::string const d{c}; std::string &g = a; printf("g: %s\n", g.c_str()); std::string const& h = a; printf("h: %s\n", h.c_str()); std::string i{std::move(a)}; i += "5"; printf("a: %s\n", a.c_str()); i = std::move(b); i += "6"; printf("b: %s\n", b.c_str()); printf("i: %s\n", i.c_str()); i = std::move(d); i += "7"; printf("d: %s\n", d.c_str()); printf("i: %s\n", i.c_str()); std::string const j{std::move(c)}; printf("c: %s\n", c.c_str()); printf("j: %s\n", j.c_str()); std::string const k{std::move(j)}; printf("j: %s\n", j.c_str()); printf("k: %s\n", k.c_str()); }
void test2() { std::string a{"1"}; a += "2"; std::string b{a}; b += "3"; std::string c{b}; c += "4"; std::string const d{c}; std::string &g = a; printf("g: %s\n", g.c_str()); std::string const& h = a; printf("h: %s\n", h.c_str()); std::string &&i{std::move(a)}; i += "5"; printf("a: %s\n", a.c_str()); printf("i: %s\n", i.c_str()); i = std::move(b); i += "6"; printf("a: %s\n", a.c_str()); printf("i: %s\n", i.c_str()); i = std::move(d); i += "7"; printf("d: %s\n", d.c_str()); printf("i: %s\n", i.c_str()); std::string const &&j{std::move(c)}; printf("c: %s\n", c.c_str()); printf("j: %s\n", j.c_str()); std::string const &&k{std::move(j)}; printf("j: %s\n", j.c_str()); printf("k: %s\n", k.c_str()); std::string const &&l{std::move(d)}; printf("d: %s\n", d.c_str()); printf("l: %s\n", l.c_str()); }
int main() { test0(); test1(); test2(); }
|
Rust 所有权、借用
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 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47
| fn main() { let mut a = String::from("1"); a += "2"; let mut b = a.clone(); b += "3"; let mut c = b.clone(); c += "4"; let d = c.clone(); let mut e = &mut a; println!("e: {}", e); e = &mut b; println!("e: {}", e); let mut f = &a; println!("f: {}", f); f = &c; println!("f: {}", f); let g = &mut a; println!("g: {}", g); let h = &a; println!("h: {}", h); let mut i = a; i += "5"; println!("i: {}", i); i = b; i += "6"; println!("i: {}", i); i = d; i += "7"; println!("i: {}", i); let j = c; println!("j: {}", j); let k = j; println!("k: {}", k); }
|