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)