LoginSignup
16
11

More than 5 years have passed since last update.

配列の展開

Last updated at Posted at 2015-04-01

引数

仮引数でカッコを付けてやるか

def args_array1((a, b))
  puts a
  puts b
end

args_array1(['a', 'b'])

実引数でアスタリスクを付けてやると

def args_array2(a, b)
  puts a
  puts b
end

args_array2(*['a', 'b'])

配列が展開されて渡される。

a
b

代入

配列を展開しつつ代入

full_name = ['阿部', '高和']
last_name, first_name = full_name
puts last_name
puts first_name
阿部
=> nil

高和
=> nil
16
11
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
16
11