Java中的句点 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: Java/time/Period.html#plusDays-long-