検索

phrase: max: clip:
target: order:
Results of 1 - 10 of about 16 for block (0.011 sec.)
メモリ解放 - Rust By Example 日本語版 12892
Introduction 1. Hello World ❱ 1.1. コメント 1.2. フォーマットしてプリント ❱ 1.2.1. デバッグ 1.2. ... } fn main() { let _a = Droppable { name: "a" }; // block A { let _b = Droppable { name: "b" }; // block B { ... et _d = Droppable { name: "d" }; println!("Exiting block B"); } println!("Just exited block B"); println!(" ... Exiting block A"); } println!("Just exited block A"); // Variabl ... いるため。 } 関連キーワード: 関数 , メモリ , 解放 , block , Result , let , Droppable , println , Rust , By ...
https://man.plustar.jp/rust/example/trait/drop.html - [similar]
スコープとシャドーイング - Rust By Example 日本語版 11991
Introduction 1. Hello World ❱ 1.1. コメント 1.2. フォーマットしてプリント ❱ 1.2.1. デバッグ 1.2. ... 息域です。 let long_lived_binding = 1; // This is a block, and has a smaller scope than the main function // ... クとなります。 { // This binding only exists in this block // この変数はこのブロック内のみに存在します。 let ... er long: {}", long_lived_binding); } // End of the block // ブロックの終わり // Error! `short_lived_binding ... dowed_binding = "abc"; println!("shadowed in inner block: {}", shadowed_binding); } println!("outside inner ...
https://man.plustar.jp/rust/example/variable_bindings/scope.html - [similar]
コメント - Rust By Example 日本語版 9981
Introduction 1. Hello World ❱ 1.1. コメント 1.2. フォーマットしてプリント ❱ 1.2.1. デバッグ 1.2. ... してください /* * This is another type of comment, a block comment. In general, * line comments are the recom ... mended comment style. But * block comments are extremely useful for temporarily disa ... bling * chunks of code. /* Block comments can be /* nested, */ */ * so it takes onl ... // You can manipulate expressions more easily with block comments // than with line comments. Try deleting ...
https://man.plustar.jp/rust/example/hello/comment.html - [similar]
Testcase: map-reduce - Rust By Example 日本語版 9807
Introduction 1. Hello World ❱ 1.1. コメント 1.2. フォーマットしてプリント ❱ 1.2.1. デバッグ 1.2. ... mple, we will calculate the sum of all digits in a block of numbers. We will do this by parcelling out chun ... ks of the block into different threads. Each thread will sum its t ... iny block of digits, and subsequently we will sum the interm ... anguage", the // last evaluated expression in each block is automatically its value. result })); } /******* ...
https://man.plustar.jp/rust/example/std_misc/threads/testcase_mapreduce.html - [similar]
Rust By Example 日本語版 9617
Introduction 1. Hello World ❱ 1.1. コメント 1.2. フォーマットしてプリント ❱ 1.2.1. デバッグ 1.2. ... してください /* * This is another type of comment, a block comment. In general, * line comments are the recom ... mended comment style. But * block comments are extremely useful for temporarily disa ... bling * chunks of code. /* Block comments can be /* nested, */ */ * so it takes onl ... // You can manipulate expressions more easily with block comments // than with line comments. Try deleting ...
https://man.plustar.jp/rust/example/print.html - [similar]
use宣言 - Rust By Example 日本語版 9253
Introduction 1. Hello World ❱ 1.1. コメント 1.2. フォーマットしてプリント ❱ 1.2.1. デバッグ 1.2. ... 簡潔にアクセス other_function(); println!("Entering block"); { // This is equivalent to `use deeply::nested: ... , the // shadowing of `function()` is only in this block. // `use`バインディングは局所的なスコープを持つ。 ... グはこのブロック内のみ function(); println!("Leaving block"); } function(); } 関連キーワード: function , use ...
https://man.plustar.jp/rust/example/mod/use.html - [similar]
while let - Rust By Example 日本語版 8161
Introduction 1. Hello World ❱ 1.1. コメント 1.2. フォーマットしてプリント ❱ 1.2.1. デバッグ 1.2. ... onal { // If `optional` destructures, evaluate the block. // もし`optional`のデストラクトに成功した場合、値 ... uctures `optional` into // `Some(i)`, evaluate the block (`{}`). Else `break`. // これは次のように読める。「 ...
https://man.plustar.jp/rust/example/flow_control/while_let.html - [similar]
演算子のオーバーロード - Rust By Example 日本語版 8161
Introduction 1. Hello World ❱ 1.1. コメント 1.2. フォーマットしてプリント ❱ 1.2.1. デバッグ 1.2. ... ddition with a RHS of type `Bar`. // The following block implements the operation: Foo + Bar = FooBar // `s ... ait for addition with a RHS of type `Foo`. // This block implements the operation: Bar + Foo = BarFoo // 型 ...
https://man.plustar.jp/rust/example/trait/ops.html - [similar]
Playpen - Rust By Example 日本語版 7433
Introduction 1. Hello World ❱ 1.1. コメント 1.2. フォーマットしてプリント ❱ 1.2.1. デバッグ 1.2. ... is the adding the word editable to your codefence block separated by a comma. ```rust,editable //...place ...
https://man.plustar.jp/rust/example/meta/playpen.html - [similar]
他言語関数インターフェイス - Rust By Example 日本語版 7433
Introduction 1. Hello World ❱ 1.1. コメント 1.2. フォーマットしてプリント ❱ 1.2.1. デバッグ 1.2. ... 言する必要があります。 use std::fmt; // this extern block links to the libm library // このexternブロックはl ...
https://man.plustar.jp/rust/example/std_misc/ffi.html - [similar]
PREV 1 2 NEXT