📜  Java中的月份 getValue() 方法

📅  最后修改于: 2022-05-13 01:54:42.780000             🧑  作者: Mango

Java中的月份 getValue() 方法

getValue()方法是 Month ENUM 的内置方法,用于从该 Month 实例中以整数形式获取月份的值。

此方法返回的值在 1-12 的范围内,表示从 1 月到 12 月的月份。

语法

public int getValue()

参数:此方法不接受任何参数。

返回值:此方法将此 Month 实例的月份值作为整数返回。

下面的程序说明了上述方法:

程序 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.MARCH;
  
        // Get the value of month-of-year as int
        System.out.println(month.getValue());
    }
}
输出:
3

方案二

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.DECEMBER;
  
        // Get the value of month-of-year as int
        System.out.println(month.getValue());
    }
}
输出:
12

参考:https: Java/time/Month.html#getValue–