dart:core
库中double.floor
方法的用法介绍如下。
用法:
int floor()
override
返回不大于此数字的最大整数。
将数字向负无穷大舍入。
如果此数字不是有限的(NaN 或无穷大),则抛出 UnsupportedError。
print(1.99999.floor()); // 1
print(2.0.floor()); // 2
print(2.99999.floor()); // 2
print((-1.99999).floor()); // -2
print((-2.0).floor()); // -2
print((-2.00001).floor()); // -3
相关用法
- Dart double.floorToDouble用法及代码示例
- Dart double.operator_modulo用法及代码示例
- Dart double.parse用法及代码示例
- Dart double.ceil用法及代码示例
- Dart double.truncate用法及代码示例
- Dart double.truncateToDouble用法及代码示例
- Dart double.ceilToDouble用法及代码示例
- Dart double.remainder用法及代码示例
- Dart double.roundToDouble用法及代码示例
- Dart double.round用法及代码示例
- Dart double.abs用法及代码示例
- Dart double.tryParse用法及代码示例
- Dart MapMixin.containsKey用法及代码示例
- Dart Iterator用法及代码示例
- Dart AttributeClassSet.intersection用法及代码示例
- Dart num.sign用法及代码示例
- Dart TransformList.last用法及代码示例
- Dart FileList.first用法及代码示例
- Dart CanvasRenderingContext2D.drawImageScaledFromSource用法及代码示例
- Dart FileList.length用法及代码示例
- Dart Iterable.takeWhile用法及代码示例
- Dart LinkedHashMap用法及代码示例
- Dart RegExp.pattern用法及代码示例
- Dart StreamTransformer构造函数用法及代码示例
- Dart JsArray.removeAt用法及代码示例
注:本文由纯净天空筛选整理自dart.dev大神的英文原创作品 floor method。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。