Welcome toVigges Developer Community-Open, Learning,Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
2.6k views
in Technique[技术] by (71.8m points)

How to filter a list in Scala

I have a class Dog in Scala: case class Dog(age: Int)

And a list with dogs like this: val dogs: List[Dog] = Dog(5) :: Dog(2) :: Dog(4) :: Nil.

I want a list with only the dogs with age > 4, how can I do that?

Many thanks! Vasco

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

With dogs.filter(_.age > 4)


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to Vigges Developer Community for programmer and developer-Open, Learning and Share
...