count()方法属于类Abstract Iterator的具体值成员。它在IterableOnceOps类中定义。它计算满足给定谓词的指定集合中元素的数量。
函数定义: def count(p:(A) => Boolean):Int
Where, p is the predicate used.
返回类型:It returns the number of elements satisfying the predicate p.
范例1:
// Scala program of count()
// method
// Creating object
object GfG
{
// Main method
def main(args:Array[String])
{
// Creating an Iterator
val iter = Iterator(5, 6, 8)
// Applying count method
val result = iter.count(x => {x % 3 != 0})
// Displays output
println(result)
}
}
输出:
2
这里,只有两个元素满足所陈述的谓词,因此返回两个。
范例2:
// Scala program of count()
// method
// Creating object
object GfG
{
// Main method
def main(args:Array[String])
{
// Creating an Iterator
val iter = Iterator(4, 6, 10, 11, 13)
// Applying count method
val result = iter.count(x => {x % 2 == 0})
// Displays output
println(result)
}
}
输出:
3
相关用法
- Scala Iterator take()用法及代码示例
- Scala Iterator next()用法及代码示例
- Scala Iterator map()用法及代码示例
- Scala Iterator seq()用法及代码示例
- Scala Iterator max()用法及代码示例
- Scala Map iterator用法及代码示例
- Scala Iterator zip()用法及代码示例
- Scala Iterator sum()用法及代码示例
- Scala Iterator min()用法及代码示例
- Scala Iterator hasDefiniteSize()用法及代码示例
- Scala Iterator product()用法及代码示例
- Scala Iterator toSet()用法及代码示例
- Scala Iterator nonEmpty()用法及代码示例
- Scala Iterator buffered()用法及代码示例
- Scala Iterator slice()用法及代码示例
注:本文由纯净天空筛选整理自nidhi1352singh大神的英文原创作品 Scala Iterator count() method with example。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。