operator * 抽象方法

num operator *(
  1. num other
)

将此数字乘以 other

如果此数字和 other 都是整数,则结果为 int,如 int.* 所述,否则结果为 double

实现

num operator *(num other);