1
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 1 year has passed since last update.

RustにはGoto文がない

Last updated at Posted at 2022-03-21
  • Goto文を使うのは良くないけど、多重ループを抜けるのに、Goto文は便利だと思う
  • RustにはGoto文がないので、代わりにbreakcontinueを使う

Rust入門書に載っていたサンプルコード

fn main() {
    'looptop: for i in 0..4 {
        for j in 0..4 {
            if i == 1 && j== 2 {
                break 'looptop; // ここは、セミコロン`;`
            }
            println!("{} {}", i, j);
        }
    } 
}

実行結果

0 0
0 1
0 2
0 3 // Rust入門書には、この行が書かれていなかった
1 0
1 1

ポイントの整理

  • Rustの繰り返し処理は3つ
    1. for文
    2. while文
    3. loop文
  • 繰り返し処理の行頭にラベル名を書き、breakでそこにジャンプさせる
  • ラベル名の先頭には単一引用符'が、末尾にはコロン:が必要
  • 通常、breakの末尾にセミコロン;は要らないが、ラベルを書く場合は必要

参考

1
0
1

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?