📌  相关文章
📜  Java中的月份 isSupported() 方法

📅  最后修改于: 2022-05-13 01:55:48.733000             🧑  作者: Mango

Java中的月份 isSupported() 方法

isSupported()方法是 Month ENUM 的内置方法,用于检查指定字段是否支持。此方法接受一个字段作为参数,并根据是否支持该字段返回 true 或 false。

语法

public boolean isSupported(TemporalField field)

参数:此方法接受单个参数字段,将检查它是否支持。

返回值:如果支持该字段,则此方法返回布尔值 True,否则返回 False。

下面的程序说明了上述方法:

程序 1

import java.time.*;
import java.time.Month;
import java.time.temporal.ChronoField;
  
class monthEnum {
    public static void main(String[] args)
    {
        // Create a month instance
        Month month = Month.of(5);
  
        // check if the field is valid
        if (month.isSupported(ChronoField.MONTH_OF_YEAR))
            System.out.println("This field is supported!");
        else
            System.out.println("This field is not supported!");
    }
}
输出:
This field is supported!

方案二

import java.time.*;
import java.time.Month;
import java.time.temporal.ChronoField;
  
class monthEnum {
    public static void main(String[] args)
    {
        // Create a month instance
        Month month = Month.of(5);
  
        // check if the field is valid
        if (month.isSupported(ChronoField.DAY_OF_WEEK))
            System.out.println("This field is supported!");
        else
            System.out.println("This field is not supported!");
    }
}
输出:
This field is not supported!

参考:https://www.tutorialspoint.com/javatime/javatime_month_issupported.htm