* 运算符是一种很明确的解引用的方法。
*
let a: i32 = 42; let ref_ref_ref_a: &&&i32 = &&&a; let ref_a: &i32 = **ref_ref_ref_a; let b: i32 = *ref_a;
内存细节:
Copy
a
b