📌  相关文章
📜  Java中的 MonthDay getMonthValue() 方法及示例

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

Java中的 MonthDay getMonthValue() 方法及示例

Java中MonthDay 类getMonthValue()方法获取从 1 到 12 的月份字段。

句法:

public int getMonthValue()

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

返回:该函数返回一年中的月份,从 1 到 12。

下面的程序说明了MonthDay.getMonthValue()方法:

方案一:

// 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

方案二:

// 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: Java/time/MonthDay.html#getMonthValue–