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


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


Duration类of()方法

  • of() 方法可在java.time包。
  • of() 方法用于表示此 Duration 中给定单位 (t_unit) 中的给定数量 (amt)。
  • of() 方法是一个静态方法,它可以通过类名访问,如果我们尝试使用类对象访问该方法,那么我们不会得到错误。
  • of() 方法在表示 Duration 时可能会抛出异常。
    • 算术异常:当计算结果值超出限制时可能会抛出此异常。
    • 日期时间异常:当给定的单位在持续时间方面不准确时,可能会抛出此异常。

用法:

    public static Duration of(long amt, TemporalUnit t_unit);

参数:

  • long amt– 表示在给定单位中使用的数量。
  • TemporalUnit t_unit– 表示计量数量的单位。

返回值:

这个方法的返回类型是Duration,它返回以给定单位保存数量 (amt) 值的 Duration。

例:

// Java program to demonstrate the example 
// of of(long amt, TemporalUnit t_unit) method 
// of Duration

import java.time.*;
import java.time.temporal.*;

public class OfDuration {
    public static void main(String args[]) {
        long amt = 2;
        ChronoUnit amt_unit = ChronoUnit.MINUTES;

        // represents the given amount
        // in the given unit i.e here amt 2 is
        // represented in minutes like 2M
        Duration du1 = Duration.of(amt, amt_unit);

        // Display du1
        System.out.println("Duration.of(2,minutes):" + du1);

        amt_unit = ChronoUnit.DAYS;

        // represents the given amount
        // in the given unit i.e. here amt 2 is
        // represented in DAYS like 2D i.e. 48H
        Duration du2 = Duration.of(amt, amt_unit);

        // Display du2
        System.out.println("Duration.of(2,days):" + du2);
    }
}

输出

Duration.of(2,minutes):PT2M
Duration.of(2,days):PT48H


相关用法


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