當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


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。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。