Tuesday, February 17, 2026
HomeLanguagesJavaLocalTime minusHours() method in Java with Examples

LocalTime minusHours() method in Java with Examples

The minusHours() method of LocalTime class used to subtract specified no of Hours value from this LocalTime and return the result as a LocalTime object. This instant is immutable. The calculation wraps around midnight.

Syntax:

public LocalTime minusHours(long hoursToSubtract)

Parameters: This method accepts a single parameter hoursToSubtract which is the value of hours to be subtracted, it can be a negative value.

Return value: This method returns a LocalTime based on this time with the hours subtracted.

Below programs illustrate the minusHours() method:

Program 1:




// Java program to demonstrate
// LocalTime.minusHours() method
  
import java.time.*;
  
public class GFG {
    public static void main(String[] args)
    {
  
        // create a LocalTime object
        LocalTime time
            = LocalTime.parse("19:34:50.63");
  
        // print LocalTime
        System.out.println("LocalTime before subtraction: "
                           + time);
  
        // subtract 3 hours using minusHours()
        LocalTime value = time.minusHours(3);
  
        // print result
        System.out.println("LocalTime after subtraction: "
                           + value);
    }
}


Output:

LocalTime before subtraction: 19:34:50.630
LocalTime after subtraction: 16:34:50.630

Program 2:




// Java program to demonstrate
// LocalTime.minusHours() method
  
import java.time.*;
  
public class GFG {
    public static void main(String[] args)
    {
  
        // create a LocalTime object
        LocalTime time
            = LocalTime.parse("01:00:01");
  
        // print LocalTime
        System.out.println("LocalTime before subtraction: "
                           + time);
  
        // subtract 7 hours using minusHours()
        LocalTime value = time.minusHours(7);
  
        // print result
        System.out.println("LocalTime after subtraction: "
                           + value);
    }
}


Output:

LocalTime before subtraction: 01:00:01
LocalTime after subtraction: 18:00:01

References: https://docs.oracle.com/javase/10/docs/api/java/time/LocalTime.html#minusHours(long)

RELATED ARTICLES

1 COMMENT

Most Popular

Dominic
32506 POSTS0 COMMENTS
Milvus
131 POSTS0 COMMENTS
Nango Kala
6882 POSTS0 COMMENTS
Nicole Veronica
12005 POSTS0 COMMENTS
Nokonwaba Nkukhwana
12099 POSTS0 COMMENTS
Shaida Kate Naidoo
7011 POSTS0 COMMENTS
Ted Musemwa
7255 POSTS0 COMMENTS
Thapelo Manthata
6967 POSTS0 COMMENTS
Umr Jansen
6956 POSTS0 COMMENTS