length()方法属于AbstractIterator类的具体值成员。它在类Iterator中定义。它也与方法的大小相同,也用于查找指定集合的长度。
函数定义: final def length:Int
返回类型:It returns the length of the stated collection.
范例1:
// Scala program of length()
// method
// Creating object
object GfG
{
// Main method
def main(args:Array[String])
{
// Declaring an iterator
val iter = Iterator(2, 3, 5, 7, 11)
// Applying length method
val iter1 = iter.length
// Displays output
println(iter1)
}
}
输出:
5
在这里,声明的迭代器是非空的,因此,将返回给定集合的长度。
范例2:
// Scala program of length()
// method
// Creating object
object GfG
{
// Main method
def main(args:Array[String])
{
// Declaring an iterator
val iter = Iterator()
// Applying length method
val iter1 = iter.length
// Displays output
println(iter1)
}
}
输出:
0
这里,声明的迭代器为空,因此,给定集合的长度为零。
相关用法
- Scala Iterator seq()用法及代码示例
- Scala Iterator min()用法及代码示例
- Scala Map iterator用法及代码示例
- Scala Iterator sum()用法及代码示例
- Scala Iterator take()用法及代码示例
- Scala Iterator zip()用法及代码示例
- Scala Iterator max()用法及代码示例
- Scala Iterator map()用法及代码示例
- Scala Iterator next()用法及代码示例
- Scala Iterator count()用法及代码示例
- Scala Iterator toIterable()用法及代码示例
- Scala Iterator toBuffer()用法及代码示例
- Scala Iterator find()用法及代码示例
- Scala Iterator toList()用法及代码示例
- Scala Iterator drop()用法及代码示例
注:本文由纯净天空筛选整理自nidhi1352singh大神的英文原创作品 Scala Iterator length() method with example。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。