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


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


Duration类ofSeconds()方法

用法:

    public static Duration ofSeconds(long sec_val);
    public static Duration ofSeconds(long sec_val, long nanos_adjust);
  • ofSeconds() 方法可在java.time包。
  • ofSeconds(long sec_val) 方法用于生成表示给定秒数的 Duration。
  • ofSeconds(long sec_val, long nanos_adjust) 方法用于生成表示给定秒数的 Duration,如果超过,则在给定的纳秒内进行调整。
  • 这些方法可能会在以秒为单位表示持续时间时抛出异常。
    算术异常:当此 Duration 的长度小于给定的秒数时,可能会抛出此异常。
  • 这些是静态方法,可以通过类名访问,如果我们尝试使用类对象访问这些方法,则不会出现错误。

参数:

  • 在第一种情况下,ofSeconds(long sec_val),
    • long sec_val– 表示返回的 Duration 的秒数。
  • 在第一种情况下,ofSeconds(long sec_val, long nanos_adjust),
    • long sec_val– 表示返回的 Duration 的秒数。
    • long nanos_adjust– 表示调整到给定秒数的纳秒。

返回值:

在这两种情况下,方法的返回类型都是Duration

  • 在第一种情况下,它返回表示给定秒数的 Duration。
  • 在第二种情况下,它返回表示给定秒数并在给定纳秒内进行调整的 Duration。

例:

// Java program to demonstrate the example 
// of ofSeconds() method of Duration

import java.time.*;

public class OfSecondsDuration {
    public static void main(String args[]) {
        long sec = 10;
        long nanos_adjust = 20000;

        // returns the Duration that holds the 
        // value of the given seconds
        Duration du_sec = Duration.ofSeconds(sec);

        // Display du_sec
        System.out.println("Duration.ofSeconds(sec):" + du_sec);

        // returns the Duration that holds the 
        // value of the given seconds and adjusted 
        // in nanoseconds
        du_sec = Duration.ofSeconds(sec, nanos_adjust);

        // Display du_sec
        System.out.println("Duration.ofSeconds(sec,nanos_adjust):" + du_sec);
    }
}

输出

Duration.ofSeconds(sec):PT10S
Duration.ofSeconds(sec,nanos_adjust):PT10.00002S


相关用法


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