@grid = "4x3".split("x")
当前结果是字符串数组“4”,“3”
有没有捷径将其直接分割成整数?
ruby-1.9.2-p136 :001 > left,right = "4x3".split("x").map(&:to_i) => [4,3] ruby-1.9.2-p136 :002 > left => 4 ruby-1.9.2-p136 :003 > right => 3
在结果数组上调用映射以转换为整数,并分别为左和右分配每个值.