The getSecond() method of OffsetTime class in Java is used to get the value of the second-of-minute field from this offsetTime instance.
Syntax :
public int getSecond()
Parameter: This method accepts does not accepts any parameters.
Return Value: It returns the second-of-minute which ranges from 0 to 59.
Below programs illustrate the getSecond() method:
Program 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()); } } |
second: 30
second: 30
Program 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()); } } |
second: 50
Reference: https://docs.oracle.com/javase/8/docs/api/java/time/OffsetTime.html#getSecond–