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


Java Period plusDays()用法及代码示例


Java中Period类的plusDays()方法用于将日期添加到此期间。此方法仅在DAYS运行,而不会影响其他两个YEAR,MONTH。

用法:

public Period plusDays(long daysToAdd)

参数:此方法接受单个参数daysToAdd,这是要从该期间开始添加的天数。


返回值:它根据输入中提供的期间返回一个“期间”,再加上指定的天数。不能为空。

异常:如果发生数字溢出,则抛出ArithmeticException。

以下示例程序旨在说明上述方法:

程序1

// Java code to show the function plusDays() 
// to subtract the number of days from given periods 
import java.time.Period; 
import java.time.temporal.ChronoUnit; 
  
public class PeriodClass { 
  
    // Function to subtract two given periods 
    static void addDays(Period p1, int daystoAdd) 
    { 
  
        System.out.println(p1.plusDays(daystoAdd)); 
    } 
  
    // Driver Code 
    public static void main(String[] args) 
    { 
        // Defining first period 
        int year = 4; 
        int months = 11; 
        int days = 10; 
        Period p1 = Period.of(year, months, days); 
  
        int daystoAdd = 8; 
  
        addDays(p1, daystoAdd); 
    } 
}
输出:
P4Y11M18D

程序2:期间可以为负。

// Java code to show the function plusDays() 
// to subtract the number of days from given periods 
import java.time.Period; 
import java.time.temporal.ChronoUnit; 
  
public class PeriodClass { 
  
    // Function to subtract two given periods 
    static void addDays(Period p1, int daystoAdd) 
    { 
  
        System.out.println(p1.plusDays(daystoAdd)); 
    } 
  
    // Driver Code 
    public static void main(String[] args) 
    { 
  
        // Defining first period 
        int year = -4; 
        int months = -11; 
        int days = 0; 
        Period p1 = Period.of(year, months, days); 
  
        int daystoAdd = 8; 
  
        addDays(p1, daystoAdd); 
    } 
}
输出:
P-4Y-11M8D

参考: https://docs.oracle.com/javase/8/docs/api/java/time/Period.html#plusDays-long-



相关用法


注:本文由纯净天空筛选整理自barykrg大神的英文原创作品 Period plusDays() method in Java with Examples。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。