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-
相關用法
- Java MonthDay with()用法及代碼示例
- Java MonthDay get()用法及代碼示例
- Java MonthDay from()用法及代碼示例
- Java MonthDay getLong()用法及代碼示例
- Java MonthDay hashCode()用法及代碼示例
- Java MonthDay isAfter()用法及代碼示例
- Java MonthDay isBefore()用法及代碼示例
- Java MonthDay format()用法及代碼示例
- Java MonthDay equals()用法及代碼示例
- Java MonthDay getDayOfMonth()用法及代碼示例
- Java MonthDay compareTo()用法及代碼示例
- Java MonthDay isSupported()用法及代碼示例
- Java MonthDay getMonth()用法及代碼示例
- Java MonthDay getMonthValue()用法及代碼示例
- Java MonthDay query()用法及代碼示例
注:本文由純淨天空篩選整理自gopaldave大神的英文原創作品 MonthDay atYear() method in Java with Examples。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。