El método mkString() se utiliza para mostrar todos los elementos de la cola en una string.
Definición del método: def mkString: String
Tipo de retorno: Devuelve una string que contiene todos los elementos de la cola.
Ejemplo 1:
// Scala program of mkString() // method // Import Queue import scala.collection.mutable._ // Creating object object GfG { // Main method def main(args:Array[String]) { // Creating a queue val q1 = Queue(1, 2, 3, 4) // Print the queue println(q1) // Applying mkString method val result = q1.mkString // Display output print("Queue: " + result) } }
Producción:
Queue(1, 2, 3, 4) Queue: 1234
Ejemplo #2:
// Scala program of mkString() // method // Import Queue import scala.collection.mutable._ // Creating object object GfG { // Main method def main(args:Array[String]) { // Creating a queue val q1 = Queue("Geeks", "Will", "Rule") // Print the queue println(q1) // Applying mkString method val result = q1.mkString // Display output print("Queue: " + result) } }
Producción:
Queue(Geeks, Will, Rule) Queue: 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