duplicate()方法屬於類迭代器的具體值成員。它生成迭代器的副本,該迭代器將在值的相似順序上進行迭代。如果將重複的迭代器放在相同的元素上,則稱它們相等。
-
方法定義:
def duplicate: (Iterator[A], Iterator[A])
-
返回類型:
它返回一對迭代器。
例:
// Scala program of duplicate()
// method
// Creating object
object GfG
{
// Main method
def main(args:Array[String])
{
// Declaring an iterator
val iter = Iterator(3, 4, 5, 7, 8)
// Applying duplicate method
val iter1 = iter.duplicate
// Displays output
println(iter1)
}
}
輸出:
(non-empty iterator, non-empty iterator)
在此,聲明的迭代器是非空的,因此,創建了兩個非空的迭代器。
例:
// Scala program of duplicate()
// method
// Creating object
object GfG
{
// Main method
def main(args:Array[String])
{
// Declaring an empty-iterator
val iter = Iterator()
// Applying duplicate method
val iter1 = iter.duplicate
// Displays output
println(iter1)
}
}
輸出:
(empty iterator, empty iterator)
在此,聲明的迭代器為空,因此創建了兩個空的迭代器。
相關用法
- Scala Iterator sum()用法及代碼示例
- Scala Map iterator用法及代碼示例
- Scala Iterator next()用法及代碼示例
- Scala Iterator max()用法及代碼示例
- Scala Iterator min()用法及代碼示例
- Scala Iterator seq()用法及代碼示例
- Scala Iterator zip()用法及代碼示例
- Scala Iterator take()用法及代碼示例
- Scala Iterator map()用法及代碼示例
- Scala Iterator toSet()用法及代碼示例
- Scala Iterator length()用法及代碼示例
- Scala Iterator toIterable()用法及代碼示例
- Scala Iterator nonEmpty()用法及代碼示例
- Scala Iterator product()用法及代碼示例
- Scala Iterator hasNext()用法及代碼示例
注:本文由純淨天空篩選整理自nidhi1352singh大神的英文原創作品 Scala Iterator duplicate() method with example。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。