El método getSecond() de la clase OffsetTime en Java se usa para obtener el valor del campo de segundo de minuto de esta instancia de offsetTime.
Sintaxis:
public int getSecond()
Parámetro: Este método acepta no acepta ningún parámetro.
Valor devuelto: Devuelve el segundo de minuto que va de 0 a 59.
Los siguientes programas ilustran el método getSecond() :
Programa 1:
// Java program to demonstrate the getSecond() method import java.time.OffsetTime; public class GFG { public static void main(String[] args) { // Parses the time OffsetTime time = OffsetTime.parse("15:10:30+07:00"); // gets the second in time System.out.println("second: " + time.getSecond()); } }
Producción:
second: 30
Producción:
second: 30
Programa 2 :
// Java program to demonstrate the getSecond() method import java.time.OffsetTime; public class GFG { public static void main(String[] args) { // Parses the time OffsetTime time = OffsetTime.parse("11:30:50+06:00"); // gets the second in time System.out.println("second: " + time.getSecond()); } }
Producción:
second: 50
Referencia : https://docs.oracle.com/javase/8/docs/api/java/time/OffsetTime.html#getSecond–