El método normalizado() de la clase Period en Java se usa para devolver una nueva instancia de Period después de normalizar años y meses.
Sintaxis:
public Period normalized()
Parámetros: Esta función no acepta ningún parámetro.
Valor devuelto: esta función devuelve una nueva instancia de Período después de normalizar el año y el mes del período.
Excepciones: lanza una ArithmeticException . Esta excepción se detecta si se produce un desbordamiento numérico.
El siguiente programa ilustra el método anterior:
Programa 1 :
// Java code to show the function to normalize // months and years of the period import java.time.Period; import java.time.temporal.ChronoUnit; public class PeriodClass { // Function to normalize given periods static void toNormalize(Period p1) { System.out.println(p1.normalized()); } // Driver Code public static void main(String[] args) { // Defining period int year = 4; int months = 15; int days = 10; Period p1 = Period.of(year, months, days); toNormalize(p1); } }
Producción:
P5Y3M10D
Programa 2 : Esto no normalizará el número de días.
// Java code to show the function to normalize // months and years of the period import java.time.Period; import java.time.temporal.ChronoUnit; public class PeriodClass { // Function to normalize given periods static void toNormalize(Period p1) { System.out.println(p1.normalized()); } // Driver Code public static void main(String[] args) { // Defining period int year = 10; int months = 25; int days = 366; Period p1 = Period.of(year, months, days); toNormalize(p1); } }
Producción:
P12Y1M366D
Referencia : https://docs.oracle.com/javase/8/docs/api/java/time/Period.html#normalized–