如何筛选Scala中的列表

时间:2015-11-04 17:07:10

标签: scala

我在Scala中有一个类Dog: 案例类Dog(年龄:Int)

和这样的狗列表: val狗:List[Dog] = Dog(5) :: Dog(2) :: Dog(4) :: Nil

我想要一张只有年龄≥1岁的狗的清单; 4,我该怎么做?

非常感谢! 瓦斯科

1 个答案:

答案 0 :(得分:1)

使用dogs.filter(_.age > 4)