En las colecciones mutables de Scala, el método mkString() se utiliza para mostrar todos los elementos de SortedSet en una string.
Definición del método: def mkString: String
Tipo de retorno: Devuelve una string que contiene todos los elementos del SortedSet.
Ejemplo 1:
// Scala program of mkString() // method import scala.collection.mutable.SortedSet // Creating object object GfG { // Main method def main(args:Array[String]) { // Creating a SortedSet val s1 = SortedSet(121, 2242, 331, 400) // Applying mkString method val result = s1.mkString // Display output println(result) } }
Producción:
1213314002242
Ejemplo #2:
// Scala program of mkString() // method import scala.collection.mutable.SortedSet // Creating object object GfG { // Main method def main(args:Array[String]) { // Creating a SortedSet val s1 = SortedSet("Geeks", "Will", "Rule") // Applying mkString method val result = s1.mkString // Display output println(result) } }
Producción:
GeeksRuleWill