當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


Java Month getValue()用法及代碼示例


getValue()方法是本月ENUM的內置方法,用於從該月實例中獲取month-of-year的值作為整數。

此方法返回的值在1到12的範圍內,表示從一月到十二月的月份。

用法


public int getValue()

參數:此方法不接受任何參數。

返回值:此方法從本月實例中以整數形式返回month-of-year的值。

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

程序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

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

參考: https://docs.oracle.com/javase/8/docs/api/java/time/Month.html#getValue–



相關用法


注:本文由純淨天空篩選整理自gopaldave大神的英文原創作品 Month getValue() method in Java。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。