CJCoding With Joseph

Operator Overloading

Overload the + operator on the Vector class so adding two vectors adds their X and Y components. Operator overloading lets your own type respond to built-in operators. Do NOT write a Main method.

For new 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.