标签: scala
我在Scala中有一个类Dog: 案例类Dog(年龄:Int)
和这样的狗列表: val狗:List[Dog] = Dog(5) :: Dog(2) :: Dog(4) :: Nil。
List[Dog] = Dog(5) :: Dog(2) :: Dog(4) :: Nil
我想要一张只有年龄≥1岁的狗的清单; 4,我该怎么做?
非常感谢! 瓦斯科
答案 0 :(得分:1)
使用dogs.filter(_.age > 4)
dogs.filter(_.age > 4)