操作符 < 抽象方法

bool operator <(
  1. num other
)

该数字是否在数值上小于 other

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

实现

bool operator <(num other);