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


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


Java中MonthDay類的getMonthValue()方法從1到12獲得month-of-year字段。

用法:

public int getMonthValue()

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


返回值:該函數返回month-of-year,從1到12。

以下示例程序旨在說明MonthDay.getMonthValue()方法:

示例1:

// Program to illustrate the getMonthValue() method 
  
import java.util.*; 
import java.time.*; 
  
public class GfG { 
    public static void main(String[] args) 
    { 
        // Parses the date 
        MonthDay tm1 = MonthDay.parse("--12-06"); 
  
        // Uses the function 
        LocalDate dt1 = tm1.atYear(2018); 
  
        // Prints the date 
        System.out.println(dt1.getMonthValue()); 
    } 
}
輸出:
12

示例2:

// Program to illustrate the getMonthValue() method 
  
import java.util.*; 
import java.time.*; 
  
public class GfG { 
    public static void main(String[] args) 
    { 
        // Parses the date 
        MonthDay tm1 = MonthDay.parse("--01-09"); 
  
        // Uses the function 
        LocalDate dt1 = tm1.atYear(2016); 
  
        // Prints the date 
        System.out.println(dt1.getMonthValue()); 
    } 
}
輸出:
1

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



相關用法


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