Método Scala Mutable SortedSet toString()

En las colecciones mutables de Scala, el método SortedSet toString() se utiliza para devolver una string que consta de todos los elementos del SortedSet.

Definición del método: def toString(): String

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

Ejemplo 1:

// Scala program of toString() 
// method 
import scala.collection.mutable.SortedSet 
  
// Creating object 
object GfG 
{ 
  
    // Main method 
    def main(args:Array[String]) 
    { 
        // Creating a SortedSet 
        val s1 = SortedSet(1, 3, 44, 5) 
          
        // Applying toString method 
        val result = s1.toString
          
        // Display output
        println(result)
              
    } 
} 
Producción:

TreeSet(1, 3, 5, 44)

Ejemplo #2:

// Scala program of toString() 
// method 
import scala.collection.mutable.SortedSet 
  
// Creating object 
object GfG 
{ 
  
    // Main method 
    def main(args:Array[String]) 
    { 
        // Creating a SortedSet 
        val s1 = SortedSet(444, 555, 777, 666, 111) 
          
        // Applying toString method 
        val result = s1.toString
          
        // Display output
        println(result)
              
    } 
} 
Producción:

TreeSet(111, 444, 555, 666, 777)

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 *