El método toString() se utiliza para devolver una representación de string del objeto de la cola.
Definición del método: def toString(): String
Tipo de devolución: devuelve una representación de string del objeto de la cola.
Ejemplo 1:
// Scala program of toString() // 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, 5) // Print the queue println(q1) // Applying toString method val result = q1.toString // Display output print("String representation of the queue object: " + result) } }
Producción:
Queue(1, 2, 3, 4, 5) String representation of the queue object: Queue(1, 2, 3, 4, 5)
Ejemplo #2:
// Scala program of toString() // method // Import Queue import scala.collection.mutable._ // Creating object object GfG { // Main method def main(args:Array[String]) { // Creating a queue val q1 = Queue(5, 2, 13, 7, 1, 3) // Print the queue println(q1) // Applying toString method val result = q1.toString // Display output print("String representation of the queue object: " + result) } }
Producción:
Queue(5, 2, 13, 7, 1, 3) String representation of the queue object: Queue(5, 2, 13, 7, 1, 3)
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