Método Scala SortedSet toArray() con ejemplo

El toArray() se utiliza para devolver una array que consta de todos los elementos de SortedSet.

Definición del método: def toArray: Array[A]

Tipo de retorno: Devuelve una array que consta de todos los elementos del SortedSet.

Ejemplo 1:

// Scala program of toArray() 
// method 
import scala.collection.immutable.SortedSet 
  
// Creating object 
object GfG 
{ 
  
    // Main method 
    def main(args:Array[String]) 
    { 
        // Creating a SortedSet 
        val s1 = SortedSet(1, 2, 3, 4, 7) 
          
        // Applying toArray method 
        val result = s1.toArray
          
        // Display output
        for (elem <- result)
            println(elem)
              
    } 
} 
Producción:

1
2
3
4
7

Ejemplo #2:

// Scala program of toArray() 
// method
import scala.collection.immutable.SortedSet  
  
// Creating object 
object GfG 
{ 
  
    // Main method 
    def main(args:Array[String]) 
    { 
        // Creating a SortedSet 
        val s1 = SortedSet(41, 12, 23, 43, 1, 72) 
          
        // Applying toArray method 
        val result = s1.toArray
          
        // Display output
        for (elem <- result)
            println(elem)
              
    } 
} 
Producción:

1
12
23
41
43
72

Publicación traducida automáticamente

Artículo escrito por gopaldave y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA

Deja una respuesta

Tu dirección de correo electrónico no será publicada. Los campos obligatorios están marcados con *