Java中的 Period plusMonths() 方法及示例
Java中 Period 类的 plusMonths() 方法用于将指定月份添加到当前期间。此功能仅在 MONTHS 运行,不影响 YEARS 和 DAYS。
句法:
public Period plusMonths(long monthsToAdd)
参数:此方法接受单个参数monthsToAdd ,它是要添加到期间的月数。
返回值:此方法根据输入中提供的期间加上指定的月数返回一个期间。它不能为空。
异常:如果发生数值溢出,此方法将引发ArithmeticException 。
下面的程序说明了上述方法:
方案一:
// Java code to show the function plusMonths()
// to add the number of months to given periods
import java.time.Period;
import java.time.temporal.ChronoUnit;
public class PeriodClass {
// Function to add months to given periods
static void addMonths(Period p1, int monthstoAdd)
{
System.out.println(p1.plusMonths(monthstoAdd));
}
// 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 monthstoAdd = -8;
addMonths(p1, monthstoAdd);
}
}
输出:
P-4Y-19M
程序 2 :要添加的月份可以是负数。
// Java code to show the function plusMonths()
// to add the number of months from given periods
import java.time.Period;
import java.time.temporal.ChronoUnit;
public class PeriodClass {
// Function to add months to given period
static void addMonths(Period p1, int monthstoAdd)
{
System.out.println(p1.plusMonths(monthstoAdd));
}
// 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 monthstoAdd = 8;
addMonths(p1, monthstoAdd);
}
}
输出:
P4Y19M10D
参考:https: Java/time/Period.html#plusMonths-long-