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


Java YearMonth getMonthValue()用法及代碼示例


Java中的YearMonth類的getMonthValue()方法用於從與其一起使用的Yearyearth實例中獲取month字段的值。它以1到12之間的整數形式返回month字段的值,表示從一月到十二月的月份。

用法

public int getMonthValue()

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


返回值:它以1到12之間的整數形式返回month字段的值,表示從一月到十二月的月份。

以下程序說明了Java中YearMonth的getMonthValue()方法:
示例1:

// Program to illustrate the getMonthValue() method 
  
import java.util.*; 
import java.time.*; 
import java.time.format.DateTimeFormatter; 
  
public class GfG { 
    public static void main(String[] args) 
    { 
  
        // Create a YearMonth object 
        YearMonth thisYearMonth = YearMonth.of(2017, 8); 
  
        // Get the month field 
        System.out.println(thisYearMonth.getMonthValue()); 
    } 
}
輸出:
8

示例2:

// Program to illustrate the getMonthValue() method 
  
import java.util.*; 
import java.time.*; 
import java.time.format.DateTimeFormatter; 
  
public class GfG { 
    public static void main(String[] args) 
    { 
  
        // Create a YearMonth object 
        YearMonth thisYearMonth = YearMonth.of(2018, 5); 
  
        // Get the month field 
        System.out.println(thisYearMonth.getMonthValue()); 
    } 
}
輸出:
5

參考: https://docs.oracle.com/javase/8/docs/api/java/time/YearMonth.html#getMonthValue-



相關用法


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