検索
Results of 1 - 10 of about 56 for println (0.027 sec.)
- 数当てゲームのプログラミング - Rust 日本語版 13172
- The Rust Programming Language 日本語版 まえがき はじめに 1. 事始め 1.1. インストール 1.2. Hello,
...
してみましょう。 ファイル名:src/main.rs fn main() { println!("Hello, world!"); } さて、 cargo run コマンドを使...
い。 ファイル名:src/main.rs use std::io; fn main() { println!("Guess the number!"); // 数を当ててごらん println...
iled to read line"); // 行の読み込みに失敗しました println!("You guessed: {}", guess); // 次のように予想しまし...
イブラリに含まれています。 use std::io; fn main() { println!("Guess the number!"); // 数を当ててごらん println...
- https://man.plustar.jp/rust/book/ch02-00-guessing-game-tutorial.html - [similar]
- パターン記法 - Rust 日本語版 12303
- The Rust Programming Language 日本語版 まえがき はじめに 1. 事始め 1.1. インストール 1.2. Hello,
...
low(unused)] fn main() { let x = 1; match x { 1 => println!("one"), // 1 2 => println!("two"), // 2 3 => prin...
tln!("three"), // 3 _ => println!("anything"), // なんでも } } このコードは、 x の値...
ch 式を生成します。 マッチアームのパターンと最後の println! を見て、このコードを実行したり、先まで読み進める前...
); let y = 10; match x { // 50だったよ Some(50) => println!("Got 50"), // マッチしたよ Some(y) => println!("M...
- https://man.plustar.jp/rust/book/ch18-03-pattern-syntax.html - [similar]
- The Rust Programming Language 日本語版 12096
- The Rust Programming Language 日本語版 まえがき はじめに 1. 事始め 1.1. インストール 1.2. Hello,
...
ァイル名: main.rs fn main() { // 世界よ、こんにちは println!("Hello, world!"); } リスト1-1: Hello, world! と出...
んなコードがあります: #![allow(unused)] fn main() { println!("Hello, world!"); } この行が、この小さなプログラム...
、4スペースでインデントするということです。 2番目に println! はRustのマクロを呼び出すということです。代わりに関...
数を呼んでいたら、 println ( ! なし)と入力されているでしょう。Rustのマクロにつ...
- https://man.plustar.jp/rust/book/print.html - [similar]
- クロージャ:環境をキャプチャできる匿名関数 - Rust 日本語版 9400
- The Rust Programming Language 日本語版 まえがき はじめに 1. 事始め 1.1. インストール 1.2. Hello,
...
ion(intensity: u32) -> u32 { // ゆっくり計算します println!("calculating slowly..."); thread::sleep(Duration:...
simulated_expensive_calculation(num: u32) -> u32 { println!("calculating slowly..."); thread::sleep(Duration:...
ty: u32, random_number: u32) { if intensity < 25 { println!( // 今日は{}回腕立て伏せをしてください! "Today, d...
s!", simulated_expensive_calculation(intensity) ); println!( // 次に、{}回腹筋をしてください! "Next, do {} si...
- https://man.plustar.jp/rust/book/ch13-01-closures.html - [similar]
- useキーワードでパスをスコープに持ち込む - Rust 日本語版 9135
- The Rust Programming Language 日本語版 まえがき はじめに 1. 事始め 1.1. インストール 1.2. Hello,
...
てください。 use std::io; use rand::Rng; fn main() { println!("Guess the number!"); let secret_number = rand::t...
hread_rng().gen_range(1..101); println!("The secret number is: {}", secret_number); //秘密...
の数字は次の通り: {} println!("Please input your guess."); let mut guess = Stri...
d_line(&mut guess) .expect("Failed to read line"); println!("You guessed: {}", guess); } Rustコミュニティに所...
- https://man.plustar.jp/rust/book/ch07-04-bringing-paths-into-scope-with-the-use-... - [similar]
- 制御フロー - Rust 日本語版 8914
- The Rust Programming Language 日本語版 まえがき はじめに 1. 事始め 1.1. インストール 1.2. Hello,
...
ain.rs fn main() { let number = 3; if number < 5 { println!("condition was true"); // 条件は真でした } else {...
println!("condition was false"); // 条件は偽でした } } if...
rc/main.rs fn main() { let number = 3; if number { println!("number was three"); // 数値は3です } } 今回、 if...
in.rs fn main() { let number = 3; if number != 0 { println!("number was something other than zero"); // 数値は...
- https://man.plustar.jp/rust/book/ch03-05-control-flow.html - [similar]
- 循環参照は、メモリをリークすることもある - Rust 日本語版 8855
- The Rust Programming Language 日本語版 まえがき はじめに 1. 事始め 1.1. インストール 1.2. Hello,
...
の流れの中に過程のいろんな場所での参照カウントを示す println! 文が存在しています。 ファイル名: src/main.rs use...
new(Rc::new(Nil)))); // aの最初の参照カウント = {} println!("a initial rc count = {}", Rc::strong_count(&a));...
// aの次の要素は = {:?} println!("a next item = {:?}", a.tail()); let b = Rc::new(...
Rc::clone(&a)))); // b作成後のaの参照カウント = {} println!("a rc count after b creation = {}", Rc::strong_co...
- https://man.plustar.jp/rust/book/ch15-06-reference-cycles.html - [similar]
- 高度なトレイト - Rust 日本語版 8648
- The Rust Programming Language 日本語版 まえがき はじめに 1. 事始め 1.1. インストール 1.2. Hello,
...
for Human { fn fly(&self) { // キャプテンのお言葉 println!("This is your captain speaking."); } } impl Wizar...
d for Human { fn fly(&self) { // 上がれ! println!("Up!"); } } impl Human { fn fly(&self) { // *激し...
く腕を振る* println!("*waving arms furiously*"); } } } リスト19-24: 2つ...
ruct Human; impl Pilot for Human { fn fly(&self) { println!("This is your captain speaking."); } } impl Wizar...
- https://man.plustar.jp/rust/book/ch19-03-advanced-traits.html - [similar]
- 構造体を使ったプログラム例 - Rust 日本語版 8427
- The Rust Programming Language 日本語版 まえがき はじめに 1. 事始め 1.1. インストール 1.2. Hello,
...
.rs fn main() { let width1 = 30; let height1 = 50; println!( // 長方形の面積は、{}平方ピクセルです "The area...
ル名: src/main.rs fn main() { let rect1 = (30, 50); println!( "The area of the rectangle is {} square pixels."...
{ let rect1 = Rectangle { width: 30, height: 50 }; println!( "The area of the rectangle is {} square pixels."...
晴らしいわけです。リスト5-11では、以前の章のように、 println! マクロを試しに使用しようとしていますが、動きません...
- https://man.plustar.jp/rust/book/ch05-02-example-structs.html - [similar]
- 正常なシャットダウンと片付け - Rust 日本語版 8221
- The Rust Programming Language 日本語版 まえがき はじめに 1. 事始め 1.1. インストール 1.2. Hello,
...
r in &mut self.workers { // ワーカー{}を終了します println!("Shutting down worker {}", worker.id); worker.thr...
rop(&mut self) { for worker in &mut self.workers { println!("Shutting down worker {}", worker.id); if let Som...
nwrap(); match message { Message::NewJob(job) => { println!("Worker {} got a job; executing.", id); job.call_...
rminate => { // ワーカー{}は停止するよう指示された println!("Worker {} was told to terminate.", id); break; }...
- https://man.plustar.jp/rust/book/ch20-03-graceful-shutdown-and-cleanup.html - [similar]