El método minusYears() de la clase Período en Java se usa para restar los años especificados del período dado. Esta función opera solo en AÑOS y no afecta a otros dos MESES y DÍAS.
Sintaxis:
public Period minusYears(long yearsToSubtract)
Parámetros: este método acepta un solo parámetro yearsToSubtract que es el número de año que se restará del período.
Valor devuelto : este método devuelve un período basado en el período proporcionado en la entrada restando el número de años especificado. No debe ser nulo.
Excepciones: lanza una ArithmeticException . Esta excepción se detecta si se produce un desbordamiento numérico.
Los siguientes programas ilustran el método anterior:
Programa 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); } }
Producción:
P-4Y11M10D
Programa 2 :
// 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); } }
Producción:
P12Y11M10D
Referencia : https://docs.oracle.com/javase/8/docs/api/java/time/Period.html#minusYears-long-