El método getMonthValue() de una clase ZonedDateTime se usa para obtener el campo del mes del año entre 1 y 12 de esta ZonedDateTime.
Sintaxis:
public int getMonthValue()
Parámetros: Este método no toma ningún parámetro.
Valor devuelto: este método devuelve un número entero que representa el mes del año, del 1 al 12.
Los siguientes programas ilustran el método getMonthValue():
Programa 1:
// Java program to demonstrate // ZonedDateTime.getMonthValue() method import java.time.*; public class GFG { public static void main(String[] args) { // create a ZonedDateTime object ZonedDateTime zoneddatetime = ZonedDateTime.parse( "2018-12-06T19:21:12.123+05:30[Asia/Calcutta]"); // get month field int value = zoneddatetime.getMonthValue(); // print result System.out.println("month:" + value); } }
Producción:
month:12
Programa 2:
// Java program to demonstrate // ZonedDateTime.getMonthValue() method import java.time.*; public class GFG { public static void main(String[] args) { // create a ZonedDateTime object ZonedDateTime zoneddatetime = ZonedDateTime.parse( "2018-10-25T23:12:38.543+02:00[Europe/Paris]"); // get month field int value = zoneddatetime.getMonthValue(); // print result System.out.println("month:" + value); } }
Producción:
month:10
Referencia: https://docs.oracle.com/javase/10/docs/api/java/time/ZonedDateTime.html#getMonthValue()
Publicación traducida automáticamente
Artículo escrito por AmanSingh2210 y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA