โ Back to Polymorphism
Question 565
Operator Overloading
Operator Overloading
Overload the+operator on theVectorclass so adding two vectors adds theirXandYcomponents. Operator overloading lets your own type respond to built-in operators. Do NOT write aMainmethod. Fornew Vector(1, 2) + new Vector(3, 4)the program prints: (4, 6)
Expected Output:
(4, 6)
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.