Java中的LocalDateTime getMonthValue()方法

使用getMonthValue()Java中LocalDateTime类中的方法获得一年中的月份。此方法不需要任何参数,它返回一年中的月份,范围在1到12之间。

演示此的程序如下所示-

示例

import java.time.*;
public class Demo {
   public static void main(String[] args) {
      LocalDateTime ldt = LocalDateTime.parse("2019-02-18T23:15:30");
      System.out.println("The LocalDateTime is: " + ldt);
      System.out.println("The month is: " + ldt.getMonthValue());
   }
}

输出结果

The LocalDateTime is: 2019-02-18T23:15:30
The month is: 2

现在让我们了解上面的程序。

首先显示LocalDateTime。然后使用getMonthValue()方法获得一年中的月份并显示出来。演示这的代码片段如下-

LocalDateTime ldt = LocalDateTime.parse("2019-02-18T23:15:30");
System.out.println("The LocalDateTime is: " + ldt);
System.out.println("The month is: " + ldt.getMonthValue());