Java中的 LocalDate getMonth() 方法
Java中 LocalDate 类的 getMonth() 方法使用 Month 枚举获取月份字段。
语法:
public Month getMonth()
参数:此方法不接受任何参数。
返回值:该函数返回一年中的月份。
下面的程序说明了Java中 LocalDate 的getMonth()方法:
程序 1 :
// Program to illustrate the getMonth() 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.getMonth());
}
}
输出:
NOVEMBER
方案二:
// Program to illustrate the getMonth() 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.getMonth());
}
}
输出:
JANUARY
参考:https: Java/time/LocalDate.html#getMonth()