product()方法属于类Abstract Iterator的具体值成员。它用于乘以指定集合的所有元素。
函数定义: val result = iter.product
返回类型: It returns the result obtained by multiplying all the elements of the stated iterator.
范例1:
// Scala program of product()
// method
// Creating object
object GfG
{
// Main method
def main(args:Array[String])
{
// Creating a Iterator
val iter = Iterator(1, 2, 3, 4, 5, 6)
// Applying product method
val result = iter.product
// Displays output
println(result)
}
}
输出:
720
范例2:
// Scala program of product()
// method
// Creating object
object GfG
{
// Main method
def main(args:Array[String])
{
// Creating a Iterator
val iter = Iterator(0, 1)
// Applying product method
val result = iter.product
// Displays output
println(result)
}
}
输出:
0
相关用法
- Scala Iterator take()用法及代码示例
- Scala Iterator next()用法及代码示例
- Scala Iterator map()用法及代码示例
- Scala Map iterator用法及代码示例
- Scala Iterator seq()用法及代码示例
- Scala Iterator sum()用法及代码示例
- Scala Iterator max()用法及代码示例
- Scala Iterator min()用法及代码示例
- Scala Iterator zip()用法及代码示例
- Scala List iterator()用法及代码示例
- Scala SortedMap iterator用法及代码示例
- Scala Iterator toString()用法及代码示例
- Scala Iterator toSeq()用法及代码示例
- Scala Iterator forall()用法及代码示例
- Scala Iterator indexWhere()用法及代码示例
注:本文由纯净天空筛选整理自nidhi1352singh大神的英文原创作品 Scala Iterator product() method with example。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。