當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


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。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。