Scala Map equals() method with example
The equals() method is utilized to check whether the two maps have the same key-values pair or not.
Method Definition: def equals(that: Any): Boolean
Return Type: It returns true if the key-value pairs of both the maps are same else it returns false.
Example #1:
// Scala program of equals() // method // Creating object object GfG { // Main method def main(args : Array[String]) { // Creating maps val m 1 = Map( "geeks" - > 5 , "for" - > 3 , "cs" - > 2 ) val m 2 = Map( "cs" - > 2 , "for" - > 3 , "geeks" - > 5 ) // Applying equals method val result = m 1 .equals(m 2 ) // Displays output println(result) } } |
Output:
true
Example #2:
// Scala program of equals() // method // Creating object object GfG { // Main method def main(args : Array[String]) { // Creating maps val m 1 = Map( "geeks" - > 5 , "for" - > 3 , "cs" - > 2 ) val m 2 = Map( "cs" - > 2 , "fo" - > 2 , "geeks" - > 5 ) // Applying equals method val result = m 1 .equals(m 2 ) // Displays output println(result) } } |
Output:
false
Please Login to comment...