解决方法
使用
Enumerable#all?
块.整数是ruby中的类
Integer的实例.
[1,2,3].all? {|i| i.is_a?(Integer) } # => true [1,3,'4'].all? {|i| i.is_a?(Integer) } # => false