โ Back to Interfaces
Question 697
Clone an Object With ICloneable
Clone an Object With ICloneable
Complete thePointclass so that it implements theICloneableinterface. TheClonemethod must return a NEWPointobject whoseXandYmatch the current object. Do NOT write aMainmethod. The tester clones a point, changes the original, then prints the clone's coordinates asX,Y. For a point withX = 3andY = 4the program prints: 3,4
Expected Output:
3,4
Topics:
Interfaces
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.