当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Java YearMonth atEndOfMonth()用法及代码示例


Java中的YearMonth类的atEndOfMonth()方法用于基于与其一起使用的Yearyearth对象返回月份的最后一天的LocalDate。

用法

public LocalDate atEndOfMonth()

参数:此方法不接受任何参数。


返回值:它返回带有本YearMonth对象指定的当月最后一天的本地日期。此方法不返回NUll值。

以下程序说明了Java中YearMonth的atEndOfMonth()方法:
示例1:

// Programt to illustrate the atEndOfMonth() method 
  
import java.util.*; 
import java.time.*; 
  
public class GfG { 
    public static void main(String[] args) 
    { 
  
        // Creates a YearMonth object 
        YearMonth thisYearMonth = YearMonth.of(2017, 8); 
  
        // Creates a local date with this 
        // YearMonth object passed to it 
        // Last day of this month is 31 
        LocalDate date = thisYearMonth.atEndOfMonth(); 
  
        System.out.println(date); 
    } 
}
输出:
2017-08-31

示例2::此方法还可以照顾Le年。

// Programt to illustrate the atEndOfMonth() method 
  
import java.util.*; 
import java.time.*; 
  
public class GfG { 
    public static void main(String[] args) 
    { 
  
        // Creates a YearMonth object 
        YearMonth thisYearMonth = YearMonth.of(2016, 2); 
  
        // Creates a local date with this 
        // YearMonth object passed to it 
        // Last day of February is 
        // 29 as 2016 is a leap year 
        LocalDate date = thisYearMonth.atEndOfMonth(); 
  
        System.out.println(date); 
    } 
}
输出:
2016-02-29

参考: https://docs.oracle.com/javase/8/docs/api/java/time/YearMonth.html#atEndOfMonth-



相关用法


注:本文由纯净天空筛选整理自gopaldave大神的英文原创作品 YearMonth atEndOfMonth() method in Java。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。