1

将集合拆分为两个集合的最佳方法是什么:一个包含满足谓词的所有元素,其余的?

val nums = List[Integer](1,2,3,4)
val (evens, odds) = nums.split(_ % 2 == 0)
4

0 回答 0