En Scala Stack class
, el método copyToArray() se utiliza para copiar los elementos de la pila en 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 de la pila a un arreglo.
Ejemplo 1:
// Scala program of copyToArray() // method // Import Stack import scala.collection.mutable._ // Creating object object GfG { // Main method def main(args:Array[String]) { // Creating a stack val s1 = Stack(1, 2, 3) // Print the stack println(s1) // Creating an array val arr: Array[Int] = Array(0, 0, 0, 0, 0) // Applying copyToArray method s1.copyToArray(arr) // Displays output println("Elements in the array: ") for(elem <- arr) print(elem + " ") } }
Producción:
Stack(1, 2, 3) Elements in the array: 1 2 3 0 0
Ejemplo #2:
// Scala program of copyToArray() // method // Import Stack import scala.collection.mutable._ // Creating object object GfG { // Main method def main(args:Array[String]) { // Creating a stack val s1 = Stack(1, 2, 3) // Print the stack println(s1) // Creating an array val arr: Array[Int] = Array(0, 0, 0, 0, 0) // Applying copyToArray method s1.copyToArray(arr, 1, 2) // Displays output println("Elements in the array: ") for(elem <- arr) print(elem + " ") } }
Producción:
Stack(1, 2, 3) Elements in the array: 0 1 2 0 0
Publicación traducida automáticamente
Artículo escrito por rupesh_rao y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA