当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Java Month isSupported()用法及代码示例


isSupported()方法是月份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!

程序2

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



相关用法


注:本文由纯净天空筛选整理自gopaldave大神的英文原创作品 Month isSupported() method in Java。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。