「Ruby」Array.new()メソッドで配列要素の初期値をするサンプル
書式
Array.new(要素の数, 文字列)
Array.new(要素の数) { 条件式}
使用例
#!/usr/bin/ruby # -*- coding: UTF-8 -*- os = Array.new(4, "windows10") puts "#{os}" nums = Array.new(10) { |n| n = n * 2 } puts "#{nums}"
実行結果
>ruby test.rb
[“windows10", “windows10", “windows10", “windows10"]
[0, 2, 4, 6, 8, 10, 12, 14, 16, 18]