Saturday, October 18, 2025
HomeLanguagesJavaOffsetTime getHour() method in Java with examples

OffsetTime getHour() method in Java with examples

The getHour() method of OffsetTime class in Java is used to get the value of the hour-of-day field from this OffsetTime instance.

Syntax :

public int getHour()

Parameter : This method does not accepts any parameter.

Return Value: It returns the hour-of-day which ranges from 0 to 23.

Below programs illustrate the getHour() method:

Program 1 :




// Java program to demonstrate the getHour() method
  
import java.time.OffsetTime;
  
public class GFG {
    public static void main(String[] args)
    {
  
        // Parses the time
        OffsetTime time = OffsetTime.parse("15:30:30+07:00");
  
        // gets the time
        System.out.println("Hour: " + time.getHour());
    }
}


Output:

Hour: 15

Program 2 :




// Java program to demonstrate the getHour() method
  
import java.time.OffsetTime;
  
public class GFG {
    public static void main(String[] args)
    {
  
        // Parses the time
        OffsetTime time = OffsetTime.parse("11:30:30+06:00");
  
        // gets the time
        System.out.println("Hour: " + time.getHour());
    }
}


Output:

Hour: 11

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

RELATED ARTICLES

Most Popular

Dominic
32361 POSTS0 COMMENTS
Milvus
88 POSTS0 COMMENTS
Nango Kala
6728 POSTS0 COMMENTS
Nicole Veronica
11892 POSTS0 COMMENTS
Nokonwaba Nkukhwana
11954 POSTS0 COMMENTS
Shaida Kate Naidoo
6852 POSTS0 COMMENTS
Ted Musemwa
7113 POSTS0 COMMENTS
Thapelo Manthata
6805 POSTS0 COMMENTS
Umr Jansen
6801 POSTS0 COMMENTS