Java中的 LocalDateTime getMonth() 方法及示例
LocalDateTime 类的getMonth()方法用于返回月份字段。该字段使用 Month 枚举返回。枚举可以提供原始 int 值。
句法:
public Month getMonth()
参数:此方法不接受任何参数。
返回:此方法返回此 LocalDateTime 月份的枚举 Month 。
下面的程序说明了 LocalDateTime.getMonth() 方法:
方案一:
// Java program to demonstrate
// LocalDateTime.getMonth() method
import java.time.*;
public class GFG {
public static void main(String[] args)
{
// create a LocalDateTime Object
LocalDateTime local
= LocalDateTime.parse("2007-12-02T22:48:29");
// get Month enum value field
Month month = local.getMonth();
// print result
System.out.println("Month: "
+ month);
}
}
输出:
Month: DECEMBER
方案二:
// Java program to demonstrate
// LocalDateTime.getMonth() method
import java.time.*;
public class GFG {
public static void main(String[] args)
{
// create a LocalDateTime Object
LocalDateTime local
= LocalDateTime.parse("2017-07-22T09:32:42");
// get Month enum value field
Month month = local.getMonth();
// print result
System.out.println("Month: "
+ month);
}
}
输出:
Month: JULY
参考:https: Java/time/LocalDateTime.html#getMonth()