In this example you will see how to use equals method in java.
In this example you will see how to use equals method in java.The equals method found in java.lang.object. It is use to check state(data) of object not identifying the location in Memory of the object. It return the Boolean value.
In other way it compare content of object. where as the "==" operator check instance of object are same or not.
public class EqualDemo1 {
|