Saturday, December 13, 2025
HomeLanguagesJavaOffsetTime getSecond() in Java with examples

OffsetTime getSecond() in Java with examples

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–

RELATED ARTICLES

Most Popular

Dominic
32447 POSTS0 COMMENTS
Milvus
105 POSTS0 COMMENTS
Nango Kala
6815 POSTS0 COMMENTS
Nicole Veronica
11952 POSTS0 COMMENTS
Nokonwaba Nkukhwana
12030 POSTS0 COMMENTS
Shaida Kate Naidoo
6951 POSTS0 COMMENTS
Ted Musemwa
7202 POSTS0 COMMENTS
Thapelo Manthata
6898 POSTS0 COMMENTS
Umr Jansen
6882 POSTS0 COMMENTS