โ Back to Polymorphism
Question 692
Override Equals for Value Equality
Override Equals for Value Equality
Override the inheritedEquals(object? obj)method onPointso two points are considered equal when they have the sameXandY. The tester compares several points and prints eachboolresult. Do NOT write aMainmethod. Fornew Point(1, 2).Equals(new Point(1, 2))the program printsTrue, and comparing points with different coordinates printsFalse. The full expected output is: True False
Expected Output:
True False
Topics:
Polymorphism
Code Editor
1
Tab to indent ยท Ctrl+Enter to run ยท Ctrl+Space to expand shortcuts (cw, cr, fori)
Your Output
Run your code to see the output here...
Test Cases
Run your code to see test case results.