java.time.MonthDay.of(int month,int dayOfMonth)
方法獲取MonthDay
的範例。
以下是java.time.MonthDay.of(int month,int dayOfMonth)
方法的宣告。
public static MonthDay of(int month, int dayOfMonth)
month
- 表示從1(1月)到12(12月)的月份。dayOfMonth
- 表示日期,從1
到31
。月-日的值,不能為null
。
DateTimeException
- 如果任何欄位的值超出範圍,或者該月的日期無效。以下範例顯示了java.time.MonthDay.of(int month,int dayOfMonth)
方法的用法。
package com.yiibai;
import java.time.MonthDay;
public class MonthDayDemo {
public static void main(String[] args) {
MonthDay date = MonthDay.of(6,30);
System.out.println(date);
}
}
編譯並執行上面的程式,這將產生以下結果 -
--06-30