Equals is a trait, which is a linking that accommodates functionalities of equality. It extends the class Any. The Linear Supertype here is Any and the Subclasses here are Product, Product1, Product2, and many more.
Abstract value members
The abstract value member here is:
Scala
Scala
abstract def canEqual(that: Any): BooleanIt returns true if the stated instances are equal. Example :
// Scala program of trait
// Equals
// Creating a case class of
// employee
case class Employee (name:String, age:Int)
// Creating object
object Main
{
// Main method
def main(args: Array[String])
{
// Creating objects
var c = Employee("Nidhi", 23)
var d = Employee("Nidhi", 23)
var e = Employee("Nidhi", 25)
// Displays true if instances
// are equal else false
println(c.canEqual(d))
println(c.canEqual(e))
}
}
Output:
Here, we have used canEqual method for proving the equality of the instances.
Example :
true true
// Scala program of trait
// Equals
// Creating a case class of
// Name
case class Name (firstname:String, lastname:String)
// Creating object
object Main
{
// Main method
def main(args: Array[String])
{
// Creating objects
var x = Name("Nidhi", "Singh")
var y = Name("Nidhi", "Singh")
var z = Name("Geeta", "Sharma")
// Displays true if instances
// are equal else false
println(x.equals(y))
println(x.equals(z))
println(y==z)
}
}
Output:
Here, we have used method equals and == for checking the equality.
true false false