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



说明

**java.time.Month.of(String month)** 方法从 int 值获取 Month 的实例。

声明

以下是 **java.time.Month.of(String month)** 方法的声明。

public static Month of(String month)

public static Month of(String month)

参数

**month** - 要表示的月份,从 1(1 月)到 12(12 月)

返回值

月份,非空。

异常

**DateTimeException** - 如果月份无效。

示例

package com.tutorialspoint;

import java.time.Month;

public class MonthDemo {
   public static void main(String[] args) {
 
      Month month = Month.of(3);
      System.out.println(month);  
   }
}

现场演示

MARCH
打印本页