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-