0
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 5 years have passed since last update.

Ruby 配列 が 格納 された 変数 の 中身 を 順 に 出力する

Posted at

目的

  • Rubyにて配列が格納された変数の中身を一つづつ出力する方法を知る。

押さえるポイント

  • eachメソッドを使う
  • 配列からブロック変数に格納する
  • そのブロック変数に格納された値を出力する

書き方の例

  • 下記の配列が格納された変数には任意の配列が格納されていることとする。
  • 下記にRubyの処理を記載する。
配列が格納された変数.each do |ブロック変数|
  ブロック変数
end

より具体的な例

  • 下記の変数numbersには1〜5までの数字が配列として格納されているものとする。
  • numbersに格納された配列の値を順に出力する処理を書く
  • 下記にRubyの処理を記載する。
# 配列変数の定義
numbers = [
1, 2, 3, 4, 5
]

# numbersに格納された配列を順にブロック変数のnumberに格納し順に出力する
numbers.each do |number|
 number
end
0
0
0

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
0
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?