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


Java Duration from()用法及代码示例


Duration类from()方法

  • from() 方法可在java.time包。
  • from() 方法用于从给定的 TemporalAmount 返回此 Duration 的副本。
  • from() 方法是一个静态方法,它可以通过类名访问,如果我们尝试使用类对象访问该方法,那么我们不会得到错误。
  • from() 方法在从给定数量返回 Duration 时可能会抛出异常。
    • 日期时间异常:当给定的 amt 无法转换为 Duration 时,可能会抛出此异常。
    • 算术异常:当计算超过限制时可能会抛出此异常。

用法:

    public static Duration from(TemporalAmount amt);

参数:

  • TemporalAmount amt– 表示要转换为 Duration 的数量。

返回值:

这个方法的返回类型是Duration,它返回根据给定数量计算的持续时间。

例:

// Java program to demonstrate the example 
// of Duration from(TemporalAmount amt) method of Duration

import java.time.*;

public class FromOfDuration {
    public static void main(String args[]) {
        // Instantiates a Duration object
        Duration du1 = Duration.ofHours(10);

        // Display du1 
        System.out.println("du1:" + du1);

        // returns an instance of 
        // Duration from the given temporal 
        // amount i.e. here the given amount is
        // 10 hrs so it generates a new Duration
        // (du_from) for the given amount
        Duration du_from = Duration.from(du1);

        // Display du_from
        System.out.println("du_from:" + du_from);

        // Here, we are converting 10 hrs into Minutes
        System.out.println("du_from.toMinutes():" + du_from.toMinutes());

        // Here, we are converting 10 hrs into Seconds
        System.out.println("du_from.toSeconds():" + du_from.toSeconds());
    }
}

输出

du1:PT10H
du_from:PT10H
du_from.toMinutes():600
du_from.toSeconds():36000


相关用法


注:本文由纯净天空筛选整理自 Java Duration Class | from() Method with Example。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。