java.time.YearMonth.atEndOfMonth() 方法

描述

java.time.YearMonth.atEndOfMonth() 方法在月底返回 LocalDate。


声明

以下是 java.time.YearMonth.atEndOfMonth() 方法的声明。

public LocalDate atEndOfMonth()

返回值

本年月的最后一个有效日期,不为空。


示例

下面的例子展示了 java.time.YearMonth.atEndOfMonth() 方法的使用。

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

让我们编译并运行上面的程序,这将产生下面的结果 −

2015-12-31