Mes firstMonthOfQuarter() método en Java

firstMonthOfQuarter () es un método integrado de Month ENUM que se utiliza para obtener el primer mes correspondiente a este trimestre. El trimestre se define dividiendo el año en 4 grupos como:

  • Grupo 1: ENERO, FEBRERO, MARZO
  • Grupo 2: ABRIL, MAYO, JUNIO
  • Grupo 3: JULIO, AGOSTO, SEPTIEMBRE
  • Grupo 4: OCTUBRE, NOVIEMBRE, DICIEMBRE

Sintaxis :

public int firstMonthOfQuarter()

Parámetros : este método no acepta ningún parámetro.

Valor de Retorno : Este método devuelve el mes correspondiente al primer mes de este trimestre.

Los siguientes programas ilustran el método anterior:

Programa 1 :

import java.time.*;
import java.time.Month;
import java.time.temporal.Temporal;
  
class DayOfWeekExample {
    public static void main(String[] args)
    {
        // Set the month to february, 1st Quarter
        Month month = Month.of(2);
  
        // Get the first month of this quarter
        System.out.println(month.firstMonthOfQuarter());
    }
}
Producción:

JANUARY

Programa 2 :

import java.time.*;
import java.time.Month;
import java.time.temporal.Temporal;
  
class DayOfWeekExample {
    public static void main(String[] args)
    {
        // Set the month to JUNE, 2nd Quarter
        Month month = Month.of(6);
  
        // Get the first month of this quarter
        System.out.println(month.firstMonthOfQuarter());
    }
}
Producción:

APRIL

Referencia : https://docs.oracle.com/javase/8/docs/api/java/time/Month.html#firstMonthOfQuarter–

Publicación traducida automáticamente

Artículo escrito por gopaldave y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA

Deja una respuesta

Tu dirección de correo electrónico no será publicada. Los campos obligatorios están marcados con *