Java中的句点 plusYears() 方法及示例
Java中 Period 类的 plusYears() 方法用于将给定的年份添加到此期间。此函数仅在 YEARS 上运行,不影响 MONTH 和 DAYS。
句法:
public Period plusYears(long yearsToAdd)
参数:此方法接受单个参数yearsToAdd ,它是要添加到期间的年数。
返回值:此方法根据输入中提供的期间加上指定的年数返回一个期间。它不能为空。
异常:它抛出一个ArithmeticException 。如果发生数字溢出,则会捕获此异常。
下面的程序说明了上述方法:
方案一:
// 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: Java/time/Period.html#plusYears-long-