El método minusMonths() de la clase Período en Java se usa para restar los meses especificados del período dado. Este método opera solo en MESES y no afecta otros dos AÑOS, DÍAS.
Sintaxis:
public Period minusMonths(long monthsToSubtract)
Parámetros: este método acepta un solo parámetro monthsToSubtract que es el número de meses que se restarán del período.
Valor de retorno: este método devuelve un período basado en el período proporcionado en la entrada restando el número de meses 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 minusMonths() // to subtract the number of months from given periods import java.time.Period; import java.time.temporal.ChronoUnit; public class PeriodClass { // Function to subtract two given periods static void subtractMonths(Period p1, int monthstoSubtract) { System.out.println(p1.minusMonths(monthstoSubtract)); } // 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 monthstoSubtract = 8; subtractMonths(p1, monthstoSubtract); } }
Producción:
P4Y3M10D
Programa 2 :
// Java code to show the function minusMonths() // to subtract the number of months from given periods import java.time.Period; import java.time.temporal.ChronoUnit; public class PeriodClass { // Function to subtract two given periods static void subtractMonths(Period p1, int monthstoSubtract) { System.out.println(p1.minusMonths(monthstoSubtract)); } // 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 monthstoSubtract = -8; subtractMonths(p1, monthstoSubtract); } }
Producción:
P-4Y-3M-10D
Referencia : https://docs.oracle.com/javase/8/docs/api/java/time/Period.html#minusMonths-long-