El método getLong() de la clase MonthDay en Java obtiene el valor del campo especificado de este mes-día como un largo .
Sintaxis:
public long getLong(TemporalField field)
Parámetro: este método acepta un campo de parámetro que especifica el campo para getLong y no nulo.
Devoluciones: la función devuelve el valor largo 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 excede un largo
- ArithmeticException : lanzada cuando ocurre un desbordamiento numérico.
Los siguientes programas ilustran el método MonthDay.getLong() :
Programa 1:
// Program to illustrate the getLong() 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.getLong(ChronoField.DAY_OF_MONTH)); } }
Producción:
12
Programa 2:
// Program to illustrate the getLong() 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.getLong( ChronoField.DAY_OF_MONTH)); } }
Producción:
6
Programa 3: Para demostrar DateTimeParseException
// Program to illustrate the getLong() 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.getLong( 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#getLong-java.time.temporal.TemporalField-