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


Java Year isSupported(TemporalUnit)用法及代码示例


Year类的isSupported(TemporalUnit)方法用于检查Year类是否支持指定的TemporalUnit。实际上,此方法检查今年是否可以将通过的单位进行加法或减法运算应用于指定的单位。如果为false,则调用plus(long,TemporalUnit)和minus方法将引发异常。

ChronoUnit(Temporalunit)支持的单位是:

  • 年份
  • 几十年
  • 百年
  • 千禧年
  • ERAS

所有其他ChronoUnit实例将返回false。


用法:

public boolean isSupported(TemporalUnit unit)

参数:此方法仅接受一个代表要检查的TemporalUnit的参数单元。

返回值:如果此Year支持此单位,则此方法返回布尔值true,否则返回false。

以下示例程序旨在说明isSupported(TemporalUnit)方法:

示例1:

// Java program to demonstrate 
// Year.isSupported(TemporalUnit) method 
  
import java.time.*; 
import java.time.temporal.*; 
  
public class GFG { 
    public static void main(String[] args) 
    { 
        // create a Year object 
        Year year = Year.of(2019); 
  
        // print instance 
        System.out.println("Year :"
                           + year); 
  
        // apply isSupported() method 
        boolean value 
            = year.isSupported( 
                ChronoUnit.YEARS); 
  
        // print result 
        System.out.println("YEARS unit is supported by Year class: "
                           + value); 
    } 
}
输出:
Year :2019
YEARS unit is supported by Year class: true

示例2:

// Java program to demonstrate 
// Year.isSupported(TemporalUnit) method 
  
import java.time.*; 
import java.time.temporal.*; 
  
public class GFG { 
    public static void main(String[] args) 
    { 
        // create a Year object 
        Year year = Year.of(2022); 
  
        // print instance 
        System.out.println("Year :"
                           + year); 
  
        // apply isSupported() method 
        boolean value 
            = year.isSupported( 
                ChronoUnit.MILLENNIA); 
  
        // print result 
        System.out.println("MILLENNIA unit is supported: "
                           + value); 
    } 
}
输出:
Year :2022
MILLENNIA unit is supported: true

参考文献:
https://docs.oracle.com/javase/10/docs/api/java/time/Year.html#isSupported(java.time.temporal.TemporalUnit)



相关用法


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