En Scala immutable TreeSet class
, el método copyToArray() se utiliza para copiar los elementos del TreeSet a un Array.
Definición del método: def copyToArray[B >: A](xs: Array[B], start: Int, len: Int): Int
Parámetros:
xs: Denota el arreglo donde se copian los elementos.
inicio: Indica el índice de inicio para que se realice la copia. Su valor por defecto es 0.
len: Indica el número de elementos a copiar. Su valor por defecto es la longitud del conjunto.Tipo de retorno: Devuelve los elementos del conjunto a un arreglo.
Ejemplo 1:
// Scala program of copyToArray() // method // Import TreeSet import scala.collection.immutable._ // Creating object object GfG { // Main method def main(args:Array[String]) { // Creating TreeSet val t1 = TreeSet(2, 1, 3, 4, 5) // Print the TreeSet println(t1) // Creating an array val arr = Array(0, 0, 0, 0, 0) // Applying copyToArray() method t1.copyToArray(arr) // Displays output println("Elements in the array: ") for(elem <- arr) print(elem + " ") } }
Producción:
TreeSet(1, 2, 3, 4, 5) Elements in the array: 1 2 3 4 5
Ejemplo #2:
// Scala program of copyToArray() // method // Import TreeSet import scala.collection.immutable._ // Creating object object GfG { // Main method def main(args:Array[String]) { // Creating TreeSet val t1 = TreeSet(2, 1, 3, 4, 5) // Print the TreeSet println(t1) // Creating an array val arr = Array(0, 0, 0, 0, 0) // Applying copyToArray() method t1.copyToArray(arr, 1, 2) // Displays output println("Elements in the array: ") for(elem <- arr) print(elem + " ") } }
Producción:
TreeSet(1, 2, 3, 4, 5) Elements in the array: 0 1 2 0 0