isTraversableAgain()方法屬於Scala類迭代器的具體值成員。它檢查迭代器是否可以重複遍曆。
-
方法定義:
def isTraversableAgain: Boolean
-
返回類型:
如果聲明的迭代器可以重複遍曆,則返回true;如果不能重複遍曆,則返回false。
例:
// Scala program of isTraversableAgain()
// method
// Creating object
object GfG
{
// Main method
def main(args:Array[String])
{
// Declaring an iterator
val iter = Iterator(3, 1, 7, 9, 15)
// Applying isTraversableAgain
// method
val result = iter.isTraversableAgain
// Displays output
println(result)
}
}
輸出:
false
在此,迭代器無法重複遍曆,因此返回false。
例:
// Scala program of isTraversableAgain()
// method
// Creating object
object GfG
{
// Main method
def main(args:Array[String])
{
// Declaring an empty iterator
val iter = Iterator()
// Applying isTraversableAgain
// method
val result = iter.isTraversableAgain
// Displays output
println(result)
}
}
輸出:
false
在這裏,我們聲明了一個空的迭代器,即使它不能重複遍曆,所以該方法返回false。
相關用法
- Scala Iterator seq()用法及代碼示例
- Scala Iterator map()用法及代碼示例
- Scala Iterator next()用法及代碼示例
- Scala Iterator max()用法及代碼示例
- Scala Iterator min()用法及代碼示例
- Scala Map iterator用法及代碼示例
- Scala Iterator zip()用法及代碼示例
- Scala Iterator take()用法及代碼示例
- Scala Iterator sum()用法及代碼示例
- Scala Iterator duplicate()用法及代碼示例
- Scala Iterator addString()用法及代碼示例
- Scala Iterator toSeq()用法及代碼示例
- Scala List iterator()用法及代碼示例
- Scala Iterator toSet()用法及代碼示例
- Scala Iterator toList()用法及代碼示例
注:本文由純淨天空篩選整理自nidhi1352singh大神的英文原創作品 Scala Iterator isTraversableAgain() method with example。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。