I know that equals() will compare the value of objects, the '==' operator will check if the variable point to the same memory.
I do not understand how equals() compare the value of objects, for example:
class Test { public Test(int x, float y) { this.x = x; this.y = y; } int x, float y; } Test test1 = new Test(1,2.0); Test test2 = new Test(1,2.0); So if I use equals(), will it compare each properties in each object?
And what about if we are talking about String? using equals() and operator “==”, do we still need to override the equals()?