El método equals() se utiliza para comprobar si dos colas constan de los mismos elementos en el mismo orden.
Definición del método: def es igual a (o: cualquiera): booleano
Tipo de retorno: Devuelve verdadero si ambas colas son iguales o devuelve falso.
Ejemplo 1:
// Scala program of equals() // method // Import Queue import scala.collection.mutable._ // Creating object object GfG { // Main method def main(args:Array[String]) { // Creating queues val q1 = Queue(1, 3, 2, 7, 6, 5) val q2 = Queue(1, 3, 2, 7, 6, 5) // Print the queue println("Queue_1: " + q1) println("Queue_2: " + q2) // Applying equals method val result = q1.equals(q2) // Displays output print("Queue_1 = Queue_2: " + result) } }
Producción:
Queue_1: Queue(1, 3, 2, 7, 6, 5) Queue_2: Queue(1, 3, 2, 7, 6, 5) Queue_1 = Queue_2: true
Ejemplo #2:
// Scala program of equals() // method // Import Queue import scala.collection.mutable._ // Creating object object GfG { // Main method def main(args:Array[String]) { // Creating queues val q1 = Queue(1, 3, 2, 7, 6, 5) val q2 = Queue(5, 3, 2, 7, 6, 1) // Print the queue println("Queue_1: " + q1) println("Queue_2: " + q2) // Applying equals method val result = q1.equals(q2) // Displays output print("Queue_1 = Queue_2: " + result) } }
Producción:
Queue_1: Queue(1, 3, 2, 7, 6, 5) Queue_2: Queue(5, 3, 2, 7, 6, 1) Queue_1 = Queue_2: false
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