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


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


Duration类plusSeconds()方法

  • plusSeconds() 方法可在java.time包。
  • plusSeconds() 方法用于将给定的持续时间(以秒为单位)添加到此持续时间并返回持续时间。
  • plusSeconds() 方法是一个非静态方法,它只能通过类对象访问,如果我们尝试使用类名访问方法,那么我们将得到一个错误。
  • plusSeconds() 方法可能会在执行加法时抛出异常。
    算术异常:当计算结果超过此 Duration 的长度时,可能会抛出此异常。

用法:

    public Duration plusSeconds(long sec_val);

参数:

  • long sec_val– 表示要添加到此 Duration 的秒值。

返回值:

这个方法的返回类型是Duration,它返回包含将给定秒数添加到此 Duration 的值的 Duration。

例:

// Java program to demonstrate the example 
// of plusSeconds(long sec_val) method of Duration

import java.time.*;

public class PlusSecondsOfDuration {
    public static void main(String args[]) {
        long seconds = 10;

        // Instantiates two Duration objects
        Duration du1 = Duration.ofSeconds(40);
        Duration du2 = Duration.ofMinutes(1);

        // Display du1, du2 
        System.out.println("du1:" + du1);
        System.out.println("du2:" + du2);
        System.out.println("seconds to add:" + seconds);

        System.out.println();

        // adds the given duration in seconds with 
        // this Duration du1 and returns the Duration 
        // i.e. here we are adding the given 10 seconds
        // with this du1 that holds the value of 
        // 40 seconds i.e. 40S + 10S = 50S
        Duration plus_val = du1.plusSeconds(seconds);

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

        // adds the given duration in seconds with 
        // this Duration du2 and returns the Duration 
        // i.e. here we are adding the given 10 seconds
        // with this du2 that holds the value of 
        // 1M i.e. 1M + 10S = 1M 10S
        plus_val = du2.plusSeconds(seconds);

        // Display plus_val
        System.out.println("du2.plusSeconds(seconds):" + plus_val);
    }
}

输出

du1:PT40S
du2:PT1M
seconds to add:10

du1.plusSeconds(seconds):PT50S
du2.plusSeconds(seconds):PT1M10S


相关用法


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