

- Trending Categories
Data Structure
Networking
RDBMS
Operating System
Java
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
LocalDate minus() method in Java
An immutable copy of a LocalDate where the required duration is subtracted from it can be obtained using the minus() method in the LocalDate class in Java. This method requires two parameters i.e. the duration to be subtracted and the TemporalUnit of the duration. Also, it returns the LocalDate object with the required duration subtracted from it.
A program that demonstrates this is given as follows −
Example
import java.time.*; import java.time.temporal.*; public class Demo { public static void main(String[] args) { LocalDate ld = LocalDate.parse("2019-02-15"); System.out.println("The LocalDate is: " + ld); System.out.println("The LocalDate after subtracting 5 days is: " + ld.minus(5, ChronoUnit.DAYS)); } }
Output
The LocalDate is: 2019-02-15 The LocalDate after subtracting 5 days is: 2019-02-10
Now let us understand the above program.
First, LocalDate is displayed. Then an immutable copy of the LocalDate where 5 days are subtracted from it is obtained using the minus() method and this is displayed. A code snippet that demonstrates this is as follows −
LocalDate ld = LocalDate.parse("2019-02-15"); System.out.println("The LocalDate is: " + ld); System.out.println("The LocalDate after subtracting 5 days is: " + ld.minus(5, ChronoUnit.DAYS));
- Related Questions & Answers
- Instant minus() method in Java
- LocalDateTime minus() method in Java
- Duration minus() method in Java
- LocalTime minus() method in Java
- LocalDate lengthOfMonth() method in Java
- LocalDate getEra() method in Java
- LocalDate getMonthValue() method in Java
- LocalDate isAfter() method in Java
- LocalDate isBefore() method in Java
- LocalDate isEqual() method in Java
- LocalDate plusMonths() method in Java
- LocalDate plusWeeks() method in Java
- LocalDate plusDays() Method in Java
- LocalDate plusYears() method in Java
- LocalDate minusDays() Method in Java
Advertisements