java.time包中的Duration Class的getNano()方法用于获取此持续时间的nanos值。
用法:
public long getNano()
参数:此方法不接受任何参数。
返回值:此方法返回此持续时间的毫微秒级的long值。
以下示例说明了Duration.getNano()方法:
示例1:
// Java code to illustrate getNano() method
import java.time.Duration;
public class GFG {
public static void main(String[] args)
{
// Get the text
String time = "P2DT3H4M";
// Duration using parse() method
Duration duration = Duration.parse(time);
// Get the duration in nanos
// using getNano() method
System.out.println(duration.getNano());
}
}
输出:
0
示例2:
// Java code to illustrate getNano() method
import java.time.Duration;
public class GFG {
public static void main(String[] args)
{
// Duration using ofHours() method
Duration duration = Duration.ofHours(5);
// Get the duration in nanos
// using getNano() method
System.out.println(duration.getNano());
}
}
输出:
0
参考: Oracle Doc
相关用法
- Java LocalDateTime getNano()用法及代码示例
- Java Instant getNano()用法及代码示例
- Java OffsetTime getNano()用法及代码示例
- Java ZonedDateTime getNano()用法及代码示例
- Java LocalTime getNano()用法及代码示例
- Java OffsetDateTime getNano()用法及代码示例
- Java Duration dividedBy(Duration)用法及代码示例
- Java Duration equals(Duration)用法及代码示例
- Java Duration compareTo(Duration)用法及代码示例
- Java Duration minus(Duration)用法及代码示例
- Java Duration plus(Duration)用法及代码示例
- Java Duration abs()用法及代码示例
- Java Duration toMinutesPart()用法及代码示例
- Java Duration toMillisPart()用法及代码示例
- Java Duration toSecondsPart()用法及代码示例
注:本文由纯净天空筛选整理自Code_r大神的英文原创作品 Duration getNano() method in Java with Examples。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。