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

 Live Demo

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));

Samual Sam
Samual Sam

Learning faster. Every day.

Updated on: 30-Jul-2019

2K+ Views

Kickstart Your Career

Get certified by completing the course

Get Started
Advertisements