El método getLong() de la clase java.time.chrono.HijrahDate se utiliza para recuperar el campo temporal pasado en formato largo.
Sintaxis:
public long getLong(TemporalField field)
Parámetro : Este método toma cualquier tipo de campo temporal como parámetro.
Valor devuelto: este método devuelve el campo temporal pasado en formato largo.
A continuación se muestran los ejemplos para ilustrar el método getLong() :
Ejemplo 1:
Java
// Java program to demonstrate // getLong() method import java.util.*; import java.io.*; import java.time.*; import java.time.chrono.*; import java.time.temporal.*; public class GFG { public static void main(String[] argv) { try { // creating and initializing // HijrahDate Object HijrahDate hidate = HijrahDate.now(); // getting temporal field in long format // by using getLong() method long tempo = hidate.getLong(ChronoField.EPOCH_DAY); // display the result System.out.println( "specified temporal field" + "in long format: " + tempo); } catch (DateTimeException e) { System.out.println("passed parameter can" + " not form a date"); System.out.println("Exception thrown: " + e); } } }
Producción:
specified temporal fieldin long format: 18304
Ejemplo 2:
Java
// Java program to demonstrate // getLong() method import java.util.*; import java.io.*; import java.time.*; import java.time.chrono.*; import java.time.temporal.*; public class GFG { public static void main(String[] argv) { try { // creating and initializing // HijrahDate Object HijrahDate hidate = HijrahDate.now(); // getting temporal field in long format // by using getLong() method long tempo = hidate.getLong(ChronoField.DAY_OF_WEEK); // display the result System.out.println("specified temporal field" + " in long format: " + tempo); } catch (DateTimeException e) { System.out.println("passed parameter can" + " not form a date"); System.out.println("Exception thrown: " + e); } } }
Producción:
specified temporal field in long format: 3
Publicación traducida automáticamente
Artículo escrito por RohitPrasad3 y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA