java.time.Month of()方法

java.time.Month.of(String month)方法从一个int值求出月的一个实例。

1 语法

public static Month of(String month)

2 参数

month:表示一年中的月份,从1(1月)到12(12月)

3 返回值

一年中的月份,不能为null。

4 示例 

package com.yiidian;

/**
 * 一点教程网: http://www.yiidian.com
 */
/**
 * java.time.Month of()方法
 */
import java.time.Month;

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

输出结果为:

MARCH

 

热门文章

优秀文章