Thursday, January 29, 2026
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
32477 POSTS0 COMMENTS
Milvus
122 POSTS0 COMMENTS
Nango Kala
6849 POSTS0 COMMENTS
Nicole Veronica
11978 POSTS0 COMMENTS
Nokonwaba Nkukhwana
12065 POSTS0 COMMENTS
Shaida Kate Naidoo
6986 POSTS0 COMMENTS
Ted Musemwa
7221 POSTS0 COMMENTS
Thapelo Manthata
6934 POSTS0 COMMENTS
Umr Jansen
6916 POSTS0 COMMENTS