copyToArray()方法用於將SortedSet的元素複製到數組中。
函數定義: def copyToArray(xs:Array[A], start:Int, len:Int):Unit
參數:
xs: It denotes the array where elements are copied.
start: It denotes the starting index for the copy to takes place. Its default value is 0.
len: It denotes the number of elements to copy. Its default value is length of the SortedSet.
返回類型: It returns the elements of the SortedSet to an array.
範例1:
// Scala program of copyToArray()
// method
import scala.collection.immutable.SortedSet
// Creating object
object GfG
{
// Main method
def main(args:Array[String])
{
// Creating SortedSets
val s1 = SortedSet(1, 2, 3)
val arr: Array[Int] = Array(0, 0, 0, 0, 0)
// Applying copyToArray method
s1.copyToArray(arr)
// Displays output
for(elem <- arr)
println(elem)
}
}
輸出:
1 2 3 0 0
範例2:
// Scala program of copyToArray()
// method
import scala.collection.immutable.SortedSet
// Creating object
object GfG
{
// Main method
def main(args:Array[String])
{
// Creating SortedSets
val s1 = SortedSet(1, 2, 3)
val arr: Array[Int] = Array(0, 0, 0, 0, 0)
// Applying copyToArray method
s1.copyToArray(arr, 1, 2)
// Displays output
for(elem <- arr)
println(elem)
}
}
輸出:
0 1 2 0 0
相關用法
- Scala Map copyToArray()用法及代碼示例
- Scala Set copyToArray()用法及代碼示例
- Scala Stack copyToArray()用法及代碼示例
- Scala Queue copyToArray()用法及代碼示例
- Scala SortedMap copyToArray()用法及代碼示例
- Scala TreeSet copyToArray()用法及代碼示例
- Scala SortedSet take()用法及代碼示例
- Scala SortedSet +()用法及代碼示例
- Scala SortedSet &~()用法及代碼示例
- Scala SortedSet ++()用法及代碼示例
- Scala SortedSet &()用法及代碼示例
- Scala SortedSet map()用法及代碼示例
- Scala SortedSet last()用法及代碼示例
- Scala SortedSet contains()用法及代碼示例
- Scala SortedSet min()用法及代碼示例
注:本文由純淨天空篩選整理自gopaldave大神的英文原創作品 Scala SortedSet copyToArray() method with example。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。