Java中Period类的plusMonths()方法用于将指定的月份添加到此当前期间。此函数仅在MONTHS起作用,并且不影响YEARS和DAYS。
用法:
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-
相关用法
- Java LocalDate plusMonths()用法及代码示例
- Java ZonedDateTime plusMonths()用法及代码示例
- Java OffsetDateTime plusMonths()用法及代码示例
- Java LocalDateTime plusMonths()用法及代码示例
- Java Period get()用法及代码示例
- Java Period of()用法及代码示例
- Java Period from()用法及代码示例
- Java Period between()用法及代码示例
- Java Period plus()用法及代码示例
- Java Period minusDays()用法及代码示例
- Java Period ofMonths()用法及代码示例
- Java Period hashCode()用法及代码示例
- Java Period plusDays()用法及代码示例
- Java Period equals()用法及代码示例
- Java Period isNegative()用法及代码示例
注:本文由纯净天空筛选整理自barykrg大神的英文原创作品 Period plusMonths() method in Java with Examples。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。