toCoarsest
方法(或属性)属于 scala.concurrent.duration.Duration
类(class),其相关用法说明如下。
用法:
def toCoarsest: Duration
返回等于此持续时间但具有最粗略单位的持续时间,如果它已经是最粗略的单位,则返回自身
例子:
Duration(60, MINUTES).toCoarsest // Duration(1, HOURS)
Duration(1000, MILLISECONDS).toCoarsest // Duration(1, SECONDS)
Duration(48, HOURS).toCoarsest // Duration(2, DAYS)
Duration(5, SECONDS).toCoarsest // Duration(5, SECONDS)
源码:
- Duration.scala
相关用法
- Scala DurationIsOrdered.orElseBy用法及代码示例
- Scala DurationIsOrdered.orElse用法及代码示例
- Scala DurationIsOrdered.on用法及代码示例
- Scala DefaultMap.sizeIs用法及代码示例
- Scala DistinctBy.scanRight用法及代码示例
- Scala DoubleAccumulator.prepended用法及代码示例
- Scala Drop.inits用法及代码示例
- Scala DefaultMap.collectFirst用法及代码示例
- Scala DropRight.permutations用法及代码示例
- Scala DoubleAccumulator.sliding用法及代码示例
- Scala DefaultMap.addString用法及代码示例
- Scala DefaultMap.groupMap用法及代码示例
- Scala DropRight.lengthIs用法及代码示例
- Scala Drop.groupBy用法及代码示例
- Scala DefaultMap.lazyZip用法及代码示例
- Scala DropWhile.partitionMap用法及代码示例
- Scala Drop.collectFirst用法及代码示例
- Scala DropRight.scanRight用法及代码示例
- Scala DefaultMap.inits用法及代码示例
- Scala DropWhile.sliding用法及代码示例
- Scala Drop.lazyZip用法及代码示例
- Scala DoubleAccumulator.elementWise用法及代码示例
- Scala DistinctBy.sizeIs用法及代码示例
- Scala DoubleAccumulator.runWith用法及代码示例
- Scala DistinctBy.addString用法及代码示例
注:本文由纯净天空筛选整理自scala-lang.org大神的英文原创作品 Duration.toCoarsest。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。