El método toArray() se utiliza para mostrar una array del mapa de Scala.
Definición del método: def toArray: Array[(A, B)]
Tipo de retorno: Devuelve una array del mapa indicado.
Ejemplo 1:
// Scala program of toArray() // method // Creating object object GfG { // Main method def main(args:Array[String]) { // Creating a map val m1 = Map(3 -> "geeks", 4 -> "for", 4 -> "for") // Applying toArray method val result = m1.toArray for ( m5 <-result ) { println(m5 ) } } }
Producción:
(3,geeks) (4,for)
Ejemplo #2:
// Scala program of toArray() // method // Creating object object GfG { // Main method def main(args:Array[String]) { // Creating a map val m1 = Map(3 -> "geeks", 4 -> "for", 2 -> "cs") // Applying toArray method val result = m1.toArray for ( m5 <-result ) { // Display output println(m5 ) } } }
Producción:
(3,geeks) (4,for) (2,cs)
Publicación traducida automáticamente
Artículo escrito por nidhi1352singh y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA