trpl-zh-cn/listings/ch04-understanding-ownership/listing-04-01/src/main.rs

9 lines
272 B
Rust
Raw Normal View History

2022-02-06 16:43:51 +08:00
fn main() {
// ANCHOR: here
2022-02-06 23:46:50 +08:00
{ // s 在这里无效, 它尚未声明
let s = "hello"; // 从此处起s 是有效的
2022-02-06 16:43:51 +08:00
2022-02-06 23:46:50 +08:00
// 使用 s
} // 此作用域已结束s 不再有效
2022-02-06 16:43:51 +08:00
// ANCHOR_END: here
}