Java 中的 LocalDate 的 getMonthValue() 方法
使用 Java 中 LocalDate 类的 getMonthValue() 方法可以获取一年中的月份。此方法不需要参数,它返回的年份的月份,可能在 1 到 12 之间。
一个演示此方法的程序如下所示:
示例
import java.time.*; public class Main { public static void main(String[] args) { LocalDate ld = LocalDate.parse("2019-02-14"); System.out.println("The LocalDate is: " + ld); System.out.println("The month is: " + ld.getMonthValue()); } }
输出
The LocalDate is: 2019-02-14 The month is: 2
现在让我们了解一下上述程序。
首先显示 LocalDate。然后使用 getMonthValue() 方法获取一年中的月份,并显示该月份。演示该方法的代码片段如下所示:
LocalDate ld = LocalDate.parse("2019-02-14"); System.out.println("The LocalDate is: " + ld); System.out.println("The month is: " + ld.getMonthValue());
广告