mirror of
https://github.com/KaiserY/trpl-zh-cn
synced 2024-11-09 00:43:59 +08:00
fix translation in ch19-01-unsafe-rust.md
修复`可变或不可变`顺序错误 Refs: https://github.com/KaiserY/trpl-zh-cn/issues/461
This commit is contained in:
parent
bbd7c41391
commit
e3327d71c9
@ -32,7 +32,7 @@
|
||||
|
||||
### 解引用裸指针
|
||||
|
||||
回到第四章的 [“悬垂引用”][dangling-references] 部分,那里提到了编译器会确保引用总是有效的。不安全 Rust 有两个被称为 **裸指针**(*raw pointers*)的类似于引用的新类型。和引用一样,裸指针是可变或不可变的,分别写作 `*const T` 和 `*mut T`。这里的星号不是解引用运算符;它是类型名称的一部分。在裸指针的上下文中,**不可变** 意味着指针解引用之后不能直接赋值。
|
||||
回到第四章的 [“悬垂引用”][dangling-references] 部分,那里提到了编译器会确保引用总是有效的。不安全 Rust 有两个被称为 **裸指针**(*raw pointers*)的类似于引用的新类型。和引用一样,裸指针是不可变或可变的,分别写作 `*const T` 和 `*mut T`。这里的星号不是解引用运算符;它是类型名称的一部分。在裸指针的上下文中,**不可变** 意味着指针解引用之后不能直接赋值。
|
||||
|
||||
与引用和智能指针的区别在于,记住裸指针
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user