java.time包中的Duration Class的get(TemporalUnit)方法用于获取作为参数传递的单位的值。此方法仅支持SECONDS和NANOS单元,其余单元将导致异常。
用法:
public long get(TemporalUnit unit)
参数:此方法接受参数单元,该参数单元是要为其获取值的TemporalUnit。
返回值:此方法返回作为参数传递的单位的long值。
异常:该方法抛出:
- DateTimeException:如果不支持本机。
- UnsupportedTemporalTypeException:如果不支持本机。
以下示例说明了Duration.get()方法:
示例1:
// Java code to illustrate get() method
import java.time.Duration;
import java.time.temporal.*;
public class GFG {
public static void main(String[] args)
{
// Get the text
String time = "P2DT3H4M";
// Duration using parse() method
Duration duration = Duration.parse(time);
// Duration using get() method
long getSeconds
= duration.get(ChronoUnit.SECONDS);
System.out.println("Seconds: "
+ getSeconds);
// Duration using get() method
long getNanos
= duration.get(ChronoUnit.NANOS);
System.out.println("Nanos: "
+ getNanos);
}
}
输出:
Seconds: 183840 Nanos: 0
示例2:
// Java code to illustrate get() method
import java.time.Duration;
import java.time.temporal.*;
public class GFG {
public static void main(String[] args)
{
// Get the text
String time = "P2DT3H4M";
// Duration using parse() method
Duration duration
= Duration.parse(time);
try {
// Duration using get() method
long getMinutes
= duration.get(ChronoUnit.MINUTES);
}
catch (Exception e) {
System.out.println("Exception: " + e);
}
}
}
输出:
Exception: java.time.temporal.UnsupportedTemporalTypeException: Unsupported unit: Minutes
参考: Oracle Doc
相关用法
- Java Duration compareTo(Duration)用法及代码示例
- Java Duration dividedBy(Duration)用法及代码示例
- Java Duration minus(Duration)用法及代码示例
- Java Duration equals(Duration)用法及代码示例
- Java Duration plus(Duration)用法及代码示例
- Java Duration abs()用法及代码示例
- Java Duration hashCode()用法及代码示例
- Java Duration toString()用法及代码示例
- Java Duration toNanos()用法及代码示例
- Java Duration toMinutes()用法及代码示例
- Java Duration toDaysPart()用法及代码示例
- Java Duration toSeconds()用法及代码示例
- Java Duration toDays()用法及代码示例
- Java Duration negated()用法及代码示例
- Java Duration from(TemporalUnit)用法及代码示例
注:本文由纯净天空筛选整理自Code_r大神的英文原创作品 Duration get(TemporalUnit) method in Java with Examples。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。