Método Scala Mutable SortedSet toArray()

En las colecciones mutables de Scala, 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.mutable.SortedSet 
  
// Creating object 
object GfG 
{ 
  
    // Main method 
    def main(args:Array[String]) 
    { 
        // Creating a SortedSet 
        val s1 = SortedSet(22, 3, 44, 77) 
          
        // Applying toArray method 
        val result = s1.toArray
          
        // Display output
        for (elem <- result)
            println(elem)
              
    } 
} 
Producción:

3
22
44
77

Ejemplo #2:

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

443
451
772

Publicación traducida automáticamente

Artículo escrito por Shivam_k 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 *