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


Java Year atMonthDay()用法及代码示例


Java中Year类的atMonthDay(MonthDay)方法将当前Year对象与作为参数传递给它的month-day对象进行组合,以创建LocalDate对象。

用法

public LocalDate atMonthDay(MonthDay monthDay)

参数:此方法接受单个参数monthDay。它是MonthDay对象,它指定要使用的month-day。它需要一个有效的MonthDay对象,并且不能为NULL。


返回值:它返回由当前年份对象和作为参数传递给函数的有效MonthDate对象组成的LocalDate对象。

注意:如果当前年份不是a年,并且作为参数传递的MonthDay对象指定为“ 2月29日”,则它将在结果LocalDate对象中自动舍入为“ 2月28日”。

以下示例程序旨在说明Java中Year的atMonthDay(MonthDay)方法:
示例1:

// Program to illustrate the atMonthDay(MonthDay) method 
  
import java.util.*; 
import java.time.*; 
  
public class GfG { 
    public static void main(String[] args) 
    { 
        // Creates a Year object 
        Year thisYear = Year.of(2017); 
  
        // Creates a MonthDay object 
        MonthDay monthDay = MonthDay.of(9, 15); 
  
        // Creates a LocalDate with this 
        // Year object and MonthDay passed to it 
        LocalDate date = thisYear.atMonthDay(monthDay); 
  
        System.out.println(date); 
    } 
}
输出:
2017-09-15

示例2::由于2018年不是a年,因此以下程序中的第29天将四舍五入为28。

// Program to illustrate the atMonthDay(MonthDay) method 
  
import java.util.*; 
import java.time.*; 
  
public class GfG { 
    public static void main(String[] args) 
    { 
        // Creates a Year object 
        Year thisYear = Year.of(2018); 
  
        // Creates a MonthDay object 
        MonthDay monthDay = MonthDay.of(2, 29); 
  
        // Creates a LocalDate with this 
        // Year object and MonthDay passed to it 
        LocalDate date = thisYear.atMonthDay(monthDay); 
  
        System.out.println(date); 
    } 
}
输出:
2018-02-28

参考: https://docs.oracle.com/javase/8/docs/api/java/time/Year.html#atMonthDay-java.time.MonthDay-



相关用法


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