运算符 - 抽象方法

num operator -(
  1. num other
)

从本数字减去 other

如果这两个数字都是整数,则结果是一个 int,如 int.- 所描述的,否则结果是一个 double

实现

num operator -(num other);