可能重复:
没有块的更简洁的 max/min 版本
如果我有 N 个具有特定属性的对象(在此示例中为高度),那么找到最大值或最小值的好方法是什么?
class Person
attr_accessor: height
end
a = Person.new
a.height = 10
b = Person.new
b.height = 11
c = Person.new
c.height = 12
#what's a nice way to get the tallest person