Java Period plusYears()方法及示例
Java中Period类的plusYears()方法是用来将给定的年份添加到这个周期中。这个函数只对年进行操作,不影响月和日。
语法
public Period plusYears(long yearsToAdd)
参数: 该方法接受一个参数yearToAdd,它是要添加到周期中的年数。
返回值: 该方法返回一个基于输入中提供的周期,并加上指定的年数的周期。它不能是空的。
异常: 它抛出一个 ArithmeticException。 如果发生数字溢出,这个异常将被捕获。
下面的程序说明了上述方法。
程序1 :
// Java code to show the function plusYears()
// to add the number of years from given periods
import java.time.Period;
import java.time.temporal.ChronoUnit;
public class PeriodClass {
// Function to add years to given period
static void addYears(Period p1, int yearstoAdd)
{
System.out.println(p1.plusYears(yearstoAdd));
}
// 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 yearstoAdd = 8;
addYears(p1, yearstoAdd);
}
}
输出:
P12Y11M10D
程序2 :周期可以是负的。
// Java code to show the function plusYears()
// to add the number of years to given periods
import java.time.Period;
import java.time.temporal.ChronoUnit;
public class PeriodClass {
// Function to add years to given periods
static void addYears(Period p1, int yearstoAdd)
{
System.out.println(p1.plusYears(yearstoAdd));
}
// 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 yearstoAdd = 8;
addYears(p1, yearstoAdd);
}
}
输出:
P4Y-11M
参考资料 : https://docs.oracle.com/javase/8/docs/api/java/time/Period.html#plusYears-long-