operator > 抽象方法

bool operator >(
  1. num other
)

判断此数字是否在数值上大于 other

如果此数字大于 other,则返回 true。如果此数字小于或等于 other 或任意值为类似 double.nan 的 NaN 值,则返回 false

实现

bool operator >(num other);