Open In App

OffsetTime getSecond() in Java with examples

Last Updated : 11 Dec, 2018
Improve
Improve
Like Article
Like
Save
Share
Report

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());
    }
}


Output:

second: 30
Output:

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());
    }
}


Output:

second: 50

Reference: https://docs.oracle.com/javase/8/docs/api/java/time/OffsetTime.html#getSecond–



Like Article
Suggest improvement
Previous
Next
Share your thoughts in the comments

Similar Reads