mirror of
https://github.com/rust-lang-cn/book-cn.git
synced 2025-01-23 07:20:20 +08:00
Update ch04-01-what-is-ownership.md (#83)
Co-authored-by: YangQi <2419731931@qq.com>
This commit is contained in:
parent
f66c945198
commit
cffa0d7d45
@ -44,7 +44,7 @@ Rust 的核心功能(之一)是 **所有权**(*ownership*)。虽然该
|
||||
let s = "hello";
|
||||
```
|
||||
|
||||
变量 `s` 绑定到了一个字符串字面量,这个字符串值是硬编码进程序代码中的。这个变量从声明的点开始直到当前 **作用域** 结束时都是有效的。示例 4-1 的注释标明了变量 `s` 在何处是有效的。
|
||||
变量 `s` 绑定到了一个字符串字面量,这个字符串值是硬编码进程序代码中的。该变量从声明的那一刻开始直到当前 **作用域** 结束时都是有效的。示例 4-1 的注释标明了变量 `s` 的有效范围。
|
||||
|
||||
```rust
|
||||
{{#rustdoc_include ../listings/ch04-understanding-ownership/listing-04-01/src/main.rs:here}}
|
||||
|
Loading…
Reference in New Issue
Block a user