Will pointA.equals(pointB) return the same true/false value as
pointB.equals(pointA) ?
Answer:
Yes.
Practice
Perhaps you would like to practice? Assume that each row is independent of the others.
Point pointA = new Point( 21, 17 ); Point pointB = new Point( pointA );
Point pointA = new Point( 21, 17 ); Point pointB = new Point( 21, 17 ); pointA.move( 8, 12 );
QUESTION 23:
Do you imagine that professional programmers ever get
== and equals confused?