Overloading the + Operator
After you designed the above three classes, try to overload the "+"
operator to perform the vector addition. For example,
[1 3 5] + [2 4 6] = [3 7 11]
- If the size of the two vectors are not the same, the operation is
illegal.