运算符 + 抽象方法

num operator +(
  1. num other
)

other 添加到此数字。

如果此数字和 other 均为整数,则结果是一个 int,如 int.+ 所描述,否则结果是一个 double

实现

num operator +(num other);