2012-05-17 58 views

回答

5

爲擴大答案here

class Person 
    attr_accessor :height 

    def initialize(height) 
    self.height = height 
    end 
end 

people = [ Person.new(10), Person.new(20), Person.new(30) ] 

tallest_person = people.max_by &:height 
+0

所以基本上@cantlin所說的是將它們存儲在一個數組中並對其進行排序。這可能是大多數問題的答案,涉及尋找最高的東西(除非你絕對不能改變他們的順序) – KChaloux