En Scala TreeSet class
, el método equals() se utiliza para verificar si dos TreeSets consisten exactamente en los mismos elementos o no.
Definición del método: def es igual a (o: cualquiera): booleano
Tipo de retorno: Devuelve verdadero si ambos TreeSets son iguales o de lo contrario devuelve falso.
Ejemplo 1:
// Scala program of equals() // method // Import TreeSet import scala.collection.mutable._ // Creating object object GfG { // Main method def main(args:Array[String]) { // Creating TreeSets val t1 = TreeSet(1, 3, 2, 7, 6, 5) val t2 = TreeSet(1, 3, 2, 7, 6, 5) // Print the TreeSets println("t1: " + t1) println("t2: " + t2) // Applying equals() method val result = t1.equals(t2) // Displays output println("Both the TreeSets are equal: " + result) } }
Producción:
t1: TreeSet(1, 2, 3, 5, 6, 7) t2: TreeSet(1, 2, 3, 5, 6, 7) Both the TreeSets are equal: true
Ejemplo #2:
// Scala program of equals() // method // Import TreeSet import scala.collection.mutable._ // Creating object object GfG { // Main method def main(args:Array[String]) { // Creating TreeSets val t1 = TreeSet(1, 3, 2, 7, 6, 5) val t2 = TreeSet(3, 2, 7, 6, 5) // Print the TreeSets println("t1: " + t1) println("t2: " + t2) // Applying equals() method val result = t1.equals(t2) // Displays output println("Both the TreeSets are equal: " + result) } }
Producción:
t1: TreeSet(1, 2, 3, 5, 6, 7) t2: TreeSet(2, 3, 5, 6, 7) Both the TreeSets are equal: 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