検索
Results of 1 - 2 of about 2 for lived (0.009 sec.)
- スコープとシャドーイング - Rust By Example 日本語版 11228
- Introduction 1. Hello World ❱ 1.1. コメント 1.2. フォーマットしてプリント ❱ 1.2.1. デバッグ 1.2.
...
ion // この変数はmain関数内が生息域です。 let long_lived_binding = 1; // This is a block, and has a smaller...
この変数はこのブロック内のみに存在します。 let short_lived_binding = 2; println!("inner short: {}", short_liv...
外の同名の変数を *シャドーイング* します。 let long_lived_binding = 5_f32; println!("inner long: {}", long_l...
of the block // ブロックの終わり // Error! `short_lived_binding` doesn't exist in this scope // `short_liv...
- https://man.plustar.jp/rust/example/variable_bindings/scope.html - [similar]
- Rust By Example 日本語版 7485
- Introduction 1. Hello World ❱ 1.1. コメント 1.2. フォーマットしてプリント ❱ 1.2.1. デバッグ 1.2.
...
ion // この変数はmain関数内が生息域です。 let long_lived_binding = 1; // This is a block, and has a smaller...
この変数はこのブロック内のみに存在します。 let short_lived_binding = 2; println!("inner short: {}", short_liv...
外の同名の変数を *シャドーイング* します。 let long_lived_binding = 5_f32; println!("inner long: {}", long_l...
of the block // ブロックの終わり // Error! `short_lived_binding` doesn't exist in this scope // `short_liv...
- https://man.plustar.jp/rust/example/print.html - [similar]
PREV
1
NEXT