当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Java Month of()用法及代码示例


of()方法是Month ENUM的内置方法,用于从整数值生成Month实例。整数值应在1-12之间,代表12个月中的任何一个,并且该方法从中生成一个代表month-of-year的Month实例。

用法

public static Month of(int month)

参数:此方法接受单个参数month,它是整数类型。


返回值:此方法返回使用传递的参数生成的相应的Month实例。

异常:如果传递给该参数的一年中的月份无效,则此方法将引发DateTimeException。

以下示例程序旨在说明上述方法:

程序1

import java.time.*; 
import java.time.Month; 
import java.time.temporal.ChronoField; 
  
class monthEnum { 
    public static void main(String[] args) 
    { 
        // Create a month instance 
        Month month = Month.of(2); 
  
        // Print the month Instance 
        System.out.println(month); 
    } 
}
输出:
FEBRUARY

程序2

import java.time.*; 
import java.time.Month; 
import java.time.temporal.ChronoField; 
  
class monthEnum { 
    public static void main(String[] args) 
    { 
        // Create a month instance 
        Month month = Month.of(12); 
  
        // Print the month Instance 
        System.out.println(month); 
    } 
}
输出:
DECEMBER

参考: https://docs.oracle.com/javase/8/docs/api/java/time/Month.html#of-int-



相关用法


注:本文由纯净天空筛选整理自gopaldave大神的英文原创作品 Month of() method in Java。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。