📌  相关文章
📜  Java中的 YearMonth getMonthValue() 方法

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

Java中的 YearMonth getMonthValue() 方法

Java中 YearMonth 类的 getMonthValue() 方法用于从使用它的 YearMonth 实例中获取月份字段的值。它将月份字段的值作为 1-12 之间的整数返回,表示从 1 月到 12 月的月份。

语法

public int getMonthValue()

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

返回值:它以 1-12 之间的整数形式返回月份字段的值,表示从 1 月到 12 月的月份。

下面的程序说明了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

方案二

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