El método mkString() se utiliza para mostrar todos los elementos del conjunto en una string.
Definición del método: def mkString: String
Tipo de retorno: Devuelve una string que contiene todos los elementos del conjunto.
Ejemplo 1:
// Scala program of mkString() // method // Creating object object GfG { // Main method def main(args:Array[String]) { // Creating a set val s1 = Set(1, 2, 3, 4) // Applying mkString method val result = s1.mkString // Display output println(result) } }
Producción:
1234
Ejemplo #2:
// Scala program of mkString() // method // Creating object object GfG { // Main method def main(args:Array[String]) { // Creating a set val s1 = Set("Geeks", "Will", "Rule") // Applying mkString method val result = s1.mkString // Display output println(result) } }
Producción:
GeeksWillRule
Publicación traducida automáticamente
Artículo escrito por rupesh_rao y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA