Método MonthDay get() en Java con ejemplos

El método get() de la clase MonthDay en Java obtiene el valor del campo especificado de este mes-día como un int .

Sintaxis:

public int get(TemporalField field)

Parámetro: este método acepta un campo de parámetro que especifica el campo para obtener y no nulo.

Devoluciones: la función devuelve el valor del campo.

Excepciones : la función arroja tres expresiones como se describe a continuación:

  • DateTimeException : se lanza cuando no se puede obtener un valor para el campo o el valor está fuera del rango de valores válidos para el campo.
  • UnsupportedTemporalTypeException : se lanza cuando el campo no es compatible o el rango de valores supera un int
  • ArithmeticException : lanzada cuando ocurre un desbordamiento numérico.

Los siguientes programas ilustran el método MonthDay.get() :

Programa 1:

// Program to illustrate the get() method
  
import java.util.*;
import java.time.*;
import java.time.temporal.ChronoField;
  
public class GfG {
    public static void main(String[] args)
    {
  
        // Parses the date
        MonthDay tm1
            = MonthDay.parse("--10-12");
  
        System.out.println(
            tm1.get(ChronoField.DAY_OF_MONTH));
    }
}
Producción:

12

Programa 2:

// Program to illustrate the get() method
  
import java.util.*;
import java.time.*;
import java.time.temporal.ChronoField;
  
public class GfG {
    public static void main(String[] args)
    {
  
        // Parses the date
        MonthDay tm1
            = MonthDay.parse("--12-06");
  
        System.out.println(
            tm1.get(ChronoField.DAY_OF_MONTH));
    }
}
Producción:

6

Programa 3: Para demostrar DateTimeParseException

// Program to illustrate the get() method
  
import java.util.*;
import java.time.*;
import java.time.temporal.ChronoField;
  
public class GfG {
    public static void main(String[] args)
    {
  
        try {
  
            // Parses the date
            MonthDay tm1
                = MonthDay.parse("--13-12");
  
            System.out.println(
                tm1.get(ChronoField.DAY_OF_MONTH));
        }
        catch (Exception e) {
            System.out.println(e);
        }
    }
}
Producción:

java.time.format.DateTimeParseException:
 Text '--13-12' could not be parsed:
 Unable to obtain MonthDay from TemporalAccessor:
 {DayOfMonth=12, MonthOfYear=13},
 ISO of type java.time.format.Parsed

Referencia: https://docs.oracle.com/javase/8/docs/api/java/time/MonthDay.html#get-java.time.temporal.TemporalField-

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 *