toList()方法屬於AbstractIterable類的具體值成員,並且在TraversableOnce和GenTraversableOnce類中定義。它將可遍曆或迭代器轉換為列表,但不會終止於infinite-sized集合。
-
方法定義:
def toList: List[A]
- 返回類型:
它從聲明的可遍曆或迭代器返回列表。> /li>
例:
// Scala program of toList()
// method
// Creating object
object GfG
{
// Main method
def main(args:Array[String])
{
// Declaring an iterator
val iter = Iterator(8, 9, 10, 11)
// Applying toList method
val result = iter.toList
// Displays output
println(result)
}
}
輸出:
List(8, 9, 10, 11)
因此,列表是從迭代器生成的。
例:
// Scala program of toList()
// method
// Creating object
object GfG
{
// Main method
def main(args:Array[String])
{
// Declaring an empty-iterator
val iter = Iterator()
// Applying toList method
val result = iter.toList
// Displays output
println(result)
}
}
輸出:
List()
因此,從empty-iterator生成一個空列表。
相關用法
- Scala Set toList()用法及代碼示例
- Scala Map toList()用法及代碼示例
- Scala TreeSet toList()用法及代碼示例
- Scala Stack toList()用法及代碼示例
- Scala SortedMap toList()用法及代碼示例
- Scala Queue toList()用法及代碼示例
- Scala SortedSet toList()用法及代碼示例
- Scala Iterator sum()用法及代碼示例
- Scala Iterator next()用法及代碼示例
- Scala Iterator map()用法及代碼示例
- Scala Iterator zip()用法及代碼示例
- Scala Iterator max()用法及代碼示例
- Scala Map iterator用法及代碼示例
- Scala Iterator take()用法及代碼示例
- Scala Iterator seq()用法及代碼示例
注:本文由純淨天空篩選整理自nidhi1352singh大神的英文原創作品 Scala Iterator toList() method with example。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。