MonthDay isSupported() 方法在 Java 中
可以使用 Java 中 MonthDay 类中的 isSupported() 方法来检查 ChronoField 是否受 MonthDay 类支持。此方法需要一个参数,即要检查的 ChronoField。如果 MonthDay 类支持 ChronoField,则返回 true,否则返回 false。
演示此功能的程序如下
示例
import java.time.*; import java.time.temporal.*; public class Demo { public static void main(String[] args) { MonthDay md = MonthDay.now(); System.out.println("The MonthDay is: " + md); boolean flag = md.isSupported(ChronoField.MONTH_OF_YEAR); if(flag) System.out.println("The ChronoField MONTH_OF_YEAR is supported"); else System.out.println("The ChronoField MONTH_OF_YEAR is not supported"); } }
输出
The MonthDay is: --02-21 The ChronoField MONTH_OF_YEAR is supported
现在让我们来了解一下上面的程序。
首先显示当前的 MonthDay 对象。然后使用 isSupported() 方法来检查 MonthDay 类是否支持 ChronoField MONTH_OF_YEAR。将返回值存储在标志中并打印出相应的响应。演示此操作的代码片段如下
MonthDay md = MonthDay.now(); System.out.println("The MonthDay is: " + md); boolean flag = md.isSupported(ChronoField.MONTH_OF_YEAR); if(flag) System.out.println("The ChronoField MONTH_OF_YEAR is supported"); else System.out.println("The ChronoField MONTH_OF_YEAR is not supported");
广告