📌  相关文章
📜  Java中的 Duration get(TemporalUnit) 方法及示例

📅  最后修改于: 2022-05-13 01:54:32.077000             🧑  作者: Mango

Java中的 Duration get(TemporalUnit) 方法及示例

Java包Duration类get(TemporalUnit)方法用于获取作为参数传递的单位的值。此方法仅支持 SECONDS 和 NANOS 单元,其余单元导致异常。

句法:

public long get(TemporalUnit unit)

参数:此方法接受一个参数单元,该单元是要为其获取值的 TemporalUnit。

返回值:此方法返回作为参数传递的单位的长值

异常:此方法抛出:

  • 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 文档