trpl-zh-cn/listings/ch04-understanding-ownership/no-listing-02-string-scope/src/main.rs

11 lines
281 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
let s = String::from("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
}