📜  Java中的 LocalDate getMonthValue() 方法及示例

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

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

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

语法

public int getMonthValue()

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

返回值:该函数以数字形式返回 1-12 中的月份。

下面的程序说明了Java中 LocalDate 的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
        LocalDate dt = LocalDate.parse("2018-11-27");
  
        // Prints the day number
        System.out.println(dt.getMonthValue());
    }
}
输出:
11

方案二

// Program to illustrate the getMonthValue() method
  
import java.util.*;
import java.time.*;
  
public class GfG {
    public static void main(String[] args)
    {
        // Parses the date
        LocalDate dt = LocalDate.parse("2018-01-02");
  
        // Prints the day number
        System.out.println(dt.getMonthValue());
    }
}
输出:
1

参考:https: Java/time/LocalDate.html#getMonthValue()