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