📜  Java中的 YearMonth getMonth() 方法

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

Java中的 YearMonth getMonth() 方法

Java中 YearMonth 类的 getMonth() 方法用于从使用它的 YearMonth 实例中获取月份字段。它将月份字段作为 Month 实例返回。

语法

public Month getMonth()

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

返回值:它返回此 YearMonth 实例的月份字段。它不是返回一个值,而是返回一个 Month 实例。

下面的程序说明了Java中 YearMonth 的 getMonth() 方法:
程序 1

// Program to illustrate the getMonth() 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.getMonth());
    }
}
输出:
AUGUST

方案二

// Program to illustrate the getMonth() 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.getMonth());
    }
}
输出:
MAY

参考:https: Java/time/YearMonth.html#getMonth–