Java Period plusMonths()方法及示例
Java中Period类的plusMonths()方法用于将指定的月份添加到当前周期。这个函数只对月进行操作,不影响年和日。
语法
public Period plusMonths(long monthsToAdd)
参数: 该方法接受一个参数 monthsToAdd,它是要添加到周期中的月数。
返回值: 该方法返回一个基于输入中提供的周期,并加上指定的月数的周期。它不能是空的。
异常情况: 如果发生数字溢出,该方法会抛出一个 ArithmeticException 。
下面的程序说明了上述方法。
程序1 :
// 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://docs.oracle.com/javase/8/docs/api/java/time/Period.html#plusMonths-long-