【发布时间】:2016-11-18 04:17:52
【问题描述】:
给定以下代码:
class Person
attr_accessor :first_name, :last_name
@@people = []
def initialize(first_name,last_name)
@first_name = first_name
@last_name = last_name
@@people.push(self)
end
def self.search(last_name)
@last_name = last_name #accept a `last_name` parameter
@@people.select { |person| person.last_name }
#return a collection of matching instances
end
#have a `to_s` method to return a formatted string of the person's name
def to_s
#return a formatted string as `first_name(space)last_name`
end
end
p1 = Person.new("John", "Smith")
p2 = Person.new("John", "Doe")
p3 = Person.new("Jane", "Smith")
p4 = Person.new("Cool", "Dude")
puts Person.search("Smith")
# Should print out
# => John Smith
# => Jane Smith
我需要做什么才能返回Should print out 位下的输出?我可以让它返回对象ID:
#<Person:0x007fa40c04cd08>
#<Person:0x007fa40c04c920>
#<Person:0x007fa40c04c5d8>
#<Person:0x007fa40c04c5b0>
我看到的一个问题甚至不知道每个问题是什么:应该只返回两个值。很明显,搜索部分也是错误的。
我该怎么办?
【问题讨论】:
-
你应该实现
Person#to_s来做评论所说的 - "# return a formatted string as first_name(space)last_name" - 然后迭代Person#search返回的内容并在每个对象上调用Person#to_s。 -
另外你的搜索方法不正确。