Physical Address
304 North Cardinal St.
Dorchester Center, MA 02124
minusMinutes()
is an instance method of the Duration
class that is used to subtract the specified duration in minutes from the Duration
object.
The minusMinutes()
method is defined in the Duration
class. The Duration
class is defined in the java.time
package. To import the Duration
class, check the following import statement.
import java.time.Duration;
public Duration minusMinutes(long minutesToSubtract)
long minutesToSubtract
: The number of minutes to subtract. Can be positive or negative.This method returns a new instance of the Duration
class with the number of minutes subtracted.
In the below code, we subtract 100
minutes from the baseDuration
object with the help of the minusMinutes()
method and print the new object to the console.
import java.time.Duration;
public class Main{
public static void main(String[] args) {
// setting up base duration of three days
Duration baseDuration = Duration.ofDays(3);
// minutes to be subtracted
int minutesToSubtract = 100;
// subtracting the minutes from base duration
Duration newDuration = baseDuration.minusMinutes(minutesToSubtract);
// printing
System.out.printf("%s - %s minutes = %s", baseDuration, minutesToSubtract, newDuration);
System.out.println();
}
}
In our experience, we suggest you solve this What is Duration.minusMinutes() in Java? and gain some new skills from Professionals completely free and we assure you will be worth it.
If you are stuck anywhere between any coding problem, just visit Queslers to get the What is Duration.minusMinutes() in Java?
I hope this What is Duration.minusMinutes() in Java? would be useful for you to learn something new from this problem. If it helped you then don’t forget to bookmark our site for more Coding Solutions.
This Problem is intended for audiences of all experiences who are interested in learning about Data Science in a business context; there are no prerequisites.
Keep Learning!
More Coding Solutions >>