java.time.Year atMonthDay()方法

java.time.Year.atMonthDay(MonthDay) 方法将当前Year对象与作为参数传递给它的month-day对象结合起来,以创建LocalDate对象。

1 语法

public LocalDate atMonthDay(MonthDay monthDay)

2 参数

monthDay:它是MonthDay对象,它指定要使用的月份。它需要一个有效的MonthDay对象,并且不能为NULL。

3 返回值

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

4 示例 

package com.yiidian;

/**
 * 一点教程网: http://www.yiidian.com
 */
/**
 * java.time.Year atMonthDay()方法
 */
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

 

热门文章

优秀文章