operator >= 抽象方法
- num other
判断此数字是否数值上大于等于 other
。
如果此数字大于等于 other
,则返回 true
。如果此数字小于 other
或两个值中任意一个是像 double.nan 这样的 NaN 值,则返回 false
。
实现
bool operator >=(num other);
判断此数字是否数值上大于等于 other
。
如果此数字大于等于 other
,则返回 true
。如果此数字小于 other
或两个值中任意一个是像 double.nan 这样的 NaN 值,则返回 false
。
bool operator >=(num other);