Thursday, October 16, 2025
HomeLanguagesJavaOffsetTime minusMinutes() method in Java with examples

OffsetTime minusMinutes() method in Java with examples

The minusMinutes() method of OffsetTime class in Java returns a copy of this OffsetTime with the specified Minutes in the parameter getting subtracted.

Syntax :

public OffsetTime minusMinutes(long Minutes)

Parameter: This method accepts a single parameter Minutes which the Minutes to be subtracted. It may be negative.

Return Value: It returns a OffsetTime based on this time with the Minutes subtracted and it is not null.

Below programs illustrate the minusMinutes() method:

Program 1 :




// Java program to demonstrate the minusMinutes() method
  
import java.time.OffsetTime;
  
public class GFG {
    public static void main(String[] args)
    {
        // Parses the time
        OffsetTime time = OffsetTime.parse("11:10:10+05:05");
  
        // Specified Minutes subtracted
        System.out.println("After subtraction, time is: "
                                     + time.minusMinutes(5));
    }
}


Output:

After subtraction, time is: 11:05:10+05:05

Program 2 :




// Java program to demonstrate the minusMinutes() method
  
import java.time.OffsetTime;
  
public class GFG {
    public static void main(String[] args)
    {
        // Parses the time
        OffsetTime time = OffsetTime.parse("11:10:10+05:05");
  
        // Specified Minutes subtracted
        System.out.println("After subtraction, time is: " 
                                     + time.minusMinutes(-5));
    }
}


Output:

After subtraction, time is: 11:15:10+05:05

Reference: https://docs.oracle.com/javase/8/docs/api/java/time/OffsetTime.html#minusMinutes-long-

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