在 Ruby 中转换集合
如何在 Ruby 中将集合从一种类型转换为另一种类型。
我有一个 MileageRecords(Date, Odometer, Gallons) 集合,并希望生成 FooObject(Miles, MPG) 列表。 FooObject 属性是根据 Mileage 记录计算的。
这为我提供了数据,但我不知道如何创建集合
LogEntry.all.each_with_index do |log, index|
if index > 0
miles = LogEntry.all[index - 1].odometer - log.odometer
mpg = miles / log.gallons
puts "#{log.date} #{miles} #{mpg}"
end
end
How can I convert a Collection from One type to another in Ruby.
I have a collection MileageRecords(Date, Odometer, Gallons) and would like to generate a list of FooObject(Miles, MPG). The FooObject properties are calculated from the Mileage record.
This gets me the data, but I don't see how to create a collection
LogEntry.all.each_with_index do |log, index|
if index > 0
miles = LogEntry.all[index - 1].odometer - log.odometer
mpg = miles / log.gallons
puts "#{log.date} #{miles} #{mpg}"
end
end
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您不能进行任何类型的隐式类型转换,尤其是对于您自己的类。最好的方法可能是为 MileageRecords 创建一个
to_foo_object
方法然后您可以调用
或 稍微缩短它
You can't do any sort of implicit type casting, especially with your own classes. The best method is probably to create a
to_foo_object
method for MileageRecordsThen you can call
or to shorten it up a bit
怎么样:
How about: