Ruby解压缩数组来阻止

时间:2013-03-24 11:46:03

标签: ruby arrays multidimensional-array

settings = [ ['127.0.0.1', 80], ['0.0.0.0', 443] ]

我该怎么做:

settings.each do |ip, port|  
    ...
end

而不是:

settings.each do |config|  
    ip, port = *config
    ...
end

2 个答案:

答案 0 :(得分:8)

你的第一个例子是有效的,因为Ruby将解构块参数。有关ruby中的解构的更多信息,请参阅此article

答案 1 :(得分:3)

您正在寻找的方法是Array#map

settings = [ ['127.0.0.1', 80], ['0.0.0.0', 443] ]
settings.map { |ip, port| puts "IP: #{ip} PORT: #{port}"  } 

将返回
    #// => IP:127.0.0.1 PORT:80
    #// => IP:0.0.0.0 PORT:443