MonthDay 在 Java 中的 getMonth 方法
可以使用 Java 中 MonthDay 类中的 getMonth() 方法获取特定 MonthDay 的月名称。此方法不需要参数,它返回年中月份的名称。
演示此功能的一个程序如下所示
示例
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.getMonth()); } }
输出
The MonthDay is: --02-22 The month is: FEBRUARY
现在让我们了解一下上述程序。
首先显示 MonthDay。然后使用 getMonth() 方法显示 MonthDay 的月份名称。一个演示此功能的代码片段如下所示
MonthDay md = MonthDay.parse("--02-22"); System.out.println("The MonthDay is: " + md); System.out.println("The month is: " + md.getMonth());
广告