📜  Java中的 Period minusYears() 方法及示例

📅  最后修改于: 2022-05-13 01:55:00.028000             🧑  作者: Mango

Java中的 Period minusYears() 方法及示例

Java中 Period 类的minusYears()方法用于从给定期间中减去指定的年份。此功能仅在 YEARS 上运行,不会影响其他两个 MONTHS 和 DAYS。

句法:

public Period minusYears(long yearsToSubtract)

参数:此方法接受单个参数yearsToSubtract ,它是要从周期中减去的年份数。

返回值:此方法根据输入中提供的期间减去指定的年数返回一个期间。它不能为空。

异常:它抛出一个ArithmeticException 。如果发生数字溢出,则会捕获此异常。

下面的程序说明了上述方法:

程序 1

// Java code to show the function minusYears()
// to subtract the number of years from given period
import java.time.Period;
import java.time.temporal.ChronoUnit;
  
public class PeriodClass {
  
    // Function to subtract two given periods
    static void subtractYears(Period p1, int yearstoSubtract)
    {
  
        System.out.println(p1.minusYears(yearstoSubtract));
    }
  
    // 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 yearstoSubtract = 8;
  
        subtractYears(p1, yearstoSubtract);
    }
}
输出:
P-4Y11M10D

方案二

// Java code to show the function minusYears()
// to subtract the number of years from given period
import java.time.Period;
import java.time.temporal.ChronoUnit;
  
public class PeriodClass {
  
    // Function to subtract two given periods
    static void subtractYears(Period p1, int yearstoSubtract)
    {
  
        System.out.println(p1.minusYears(yearstoSubtract));
    }
  
    // 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 yearstoSubtract = -8;
  
        subtractYears(p1, yearstoSubtract);
    }
}
输出:
P12Y11M10D

参考:https: Java/time/Period.html#minusYears-long-