java.time.YearMonth.atEndOfMonth() Method Example



Description

The java.time.YearMonth.atEndOfMonth() method returns a LocalDate at the end of the month.

Declaration

Following is the declaration for java.time.YearMonth.atEndOfMonth() method.

public LocalDate atEndOfMonth()

Return Value

the last valid date of this year-month, not null.

Example

The following example shows the usage of java.time.YearMonth.atEndOfMonth() method.

package com.tutorialspoint;

import java.time.LocalDate;
import java.time.YearMonth;

public class YearMonthDemo {
   public static void main(String[] args) {

      YearMonth date = YearMonth.of(2015,12);
      
      LocalDate date1 = date.atEndOfMonth();
      System.out.println(date1);  
   }
}

Let us compile and run the above program, this will produce the following result −

2015-12-31
Advertisements