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。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。