🎓 Check Out My Top 25 Udemy Courses (80-90% Discount): My Udemy Courses - Ramesh Fadatare
In this guide, you will learn about the Duration minus() method in Java programming and how to use it with an example.
1. Duration minus() Method Overview
Definition:
The Duration.minus() method is used to return a new Duration instance which is the difference between the current duration and the specified duration.
Syntax:
public Duration minus(Duration duration)
Parameters:
- duration: The duration to be subtracted from the current duration. Should be of type Duration.
Key Points:
- The minus() method does not modify the original Duration instance but returns a new instance that represents the difference.
- The method can handle underflows, and if the resulting duration is too large in the negative, an ArithmeticException is thrown.
- Negative durations can be subtracted using this method, which would result in adding the absolute value of the duration to the original.
2. Duration minus() Method Example
import java.time.Duration;
public class DurationMinusExample {
public static void main(String[] args) {
Duration initialDuration = Duration.ofHours(5);
Duration subtractDuration = Duration.ofHours(2);
// Subtract the durations
Duration resultDuration = initialDuration.minus(subtractDuration);
// Print the resulting duration
System.out.println("Resulting Duration: " + resultDuration);
}
}
Output:
Resulting Duration: PT3H
Explanation:
In the provided example, we initially have a duration of 5 hours represented by initialDuration.
We then have another duration of 2 hours represented by subtractDuration.
Using the minus() method, we subtract subtractDuration from initialDuration, resulting in a new Duration instance of 3 hours. The output, "PT3H", is the standard ISO-8601 representation for a duration of 3 hours.
My Top and Bestseller Udemy Courses. The sale is going on with a 70 - 80% discount. The discount coupon has been added to each course below:
Build REST APIs with Spring Boot 4, Spring Security 7, and JWT
[NEW] Learn Apache Maven with IntelliJ IDEA and Java 25
ChatGPT + Generative AI + Prompt Engineering for Beginners
Spring 7 and Spring Boot 4 for Beginners (Includes 8 Projects)
Available in Udemy for Business
Building Real-Time REST APIs with Spring Boot - Blog App
Available in Udemy for Business
Building Microservices with Spring Boot and Spring Cloud
Available in Udemy for Business
Java Full-Stack Developer Course with Spring Boot and React JS
Available in Udemy for Business
Build 5 Spring Boot Projects with Java: Line-by-Line Coding
Testing Spring Boot Application with JUnit and Mockito
Available in Udemy for Business
Spring Boot Thymeleaf Real-Time Web Application - Blog App
Available in Udemy for Business
Master Spring Data JPA with Hibernate
Available in Udemy for Business
Spring Boot + Apache Kafka Course - The Practical Guide
Available in Udemy for Business
Comments
Post a Comment
Leave Comment