java.time.MonthDay.of() 方法示例



说明

java.time.MonthDay.of(int 月份, int 月中天数) 方法获得 MonthDay 实例。

声明

以下是 java.time.MonthDay.of(int 月份, int 月中天数) 方法的声明。

public static MonthDay of(int month, int dayOfMonth)

参数

  • 月份 − 要表示的年份中的月份,从 1(1 月)到 12(12 月)。

  • 月中天数 − 要表示的月份中的天数,从 1 到 31

返回值

月份天数,非空。

异常

DateTimeException − 如果任何字段的值超出范围,或如果月中天数对于月份无效。

示例

以下示例展示了 java.time.MonthDay.of(int 月份, int 月中天数) 方法的用法。

package com.tutorialspoint;

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
广告