📜  Java中的 MonthDay getMonth() 方法及示例

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

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

Java中MonthDay 类getMonth()方法从时间对象中获取 MonthDay 的实例。

句法:

public Month getMonth()

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

返回:该函数返回一年中的月份,而不是 null。

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

方案一:

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

方案二:

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

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