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


Java MonthDay atYear()用法及代码示例


Java中MonthDay类的atYear()方法将此month-day与一年结合起来以创建LocalDate。

用法:

public LocalDate atYear(int year)

参数:此方法接受参数Year,该参数指定要使用的年份,范围为[MIN_YEAR,MAX_YEAR]


返回值:该函数返回从此month-day形成的本地日期和指定的年份,而不是null。

以下示例程序旨在说明MonthDay.atYear()方法:

示例1:

// Program to illustrate the atYear() method 
  
import java.util.*; 
import java.time.*; 
  
public class GfG { 
    public static void main(String[] args) 
    { 
        // Parses the date 
        MonthDay tm = MonthDay.parse("--12-06"); 
  
        // Uses the function 
        LocalDate dt = tm.atYear(2018); 
  
        // Prints the date 
        System.out.println(dt); 
    } 
}
输出:
2018-12-06

示例2:

// Program to illustrate the atYear() method 
  
import java.util.*; 
import java.time.*; 
  
public class GfG { 
    public static void main(String[] args) 
    { 
        // Parses the date 
        MonthDay tm = MonthDay.parse("--01-01"); 
  
        // Uses the function 
        LocalDate dt = tm.atYear(2010); 
  
        // Prints the date 
        System.out.println(dt); 
    } 
}
输出:
2010-01-01

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



相关用法


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