当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Java Duration get(TemporalUnit)用法及代码示例


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



相关用法


注:本文由纯净天空筛选整理自Code_r大神的英文原创作品 Duration get(TemporalUnit) method in Java with Examples。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。