I have a simple question about "equals" method.
I created a simple object, called "Person" which does not have any instance variables or any method like this.
public class Person {
}
And I am comparing two references like this. Person p1 = new Person(); Person p2 = new Person(); System.out.println(p1.equals(p2));
It returns false. But if I add any instance variable and setter method to set the instance variable, then the "equals" method return true.
Can anybody explain this behavior?
Thanks.