The minusMinutes() method of LocalTime class is used to subtract specified no of Minutes value from this LocalTime and return the result as a LocalTime object. This instant is immutable. The calculation wraps around midnight.
Syntax:
public LocalTime minusMinutes(long MinutesToSubtract)
Parameters: This method accepts a single parameter MinutesToSubtract which is the value of Minutes to be subtracted, it can be a negative value.
Return value: This method returns a LocalTime based on this time with the Minutes subtracted.
Below programs illustrate the minusMinutes() method:
Program 1:
import java.time.*;
public class GFG {
public static void main(String[] args)
{
LocalTime time
= LocalTime.parse( "19:34:50.63" );
System.out.println( "LocalTime before subtraction: "
+ time);
LocalTime value = time.minusMinutes( 55 );
System.out.println( "LocalTime after subtraction: "
+ value);
}
}
|
Output:
LocalTime before subtraction: 19:34:50.630
LocalTime after subtraction: 18:39:50.630
Program 2:
import java.time.*;
public class GFG {
public static void main(String[] args)
{
LocalTime time
= LocalTime.parse( "01:00:01" );
System.out.println( "LocalTime before subtraction: "
+ time);
LocalTime value = time.minusMinutes( 600 );
System.out.println( "LocalTime after subtraction: "
+ value);
}
}
|
Output:
LocalTime before subtraction: 01:00:01
LocalTime after subtraction: 15:00:01
References: https://docs.oracle.com/javase/10/docs/api/java/time/LocalTime.html#minusMinutes(long)