Java year isSupported(TemporalUnit)方法及示例
Year 类的 isSupported(TemporalUnit) 方法用于检查指定的TemporalUnit是否被Year类所支持。实际上,这个方法检查我们是否可以使用传递的单位对指定的单位进行加减运算。如果是假的,那么调用plus(long, TemporalUnit)和minus方法将抛出一个异常。
ChronoUnit(Temporalunit)支持的单位是。
- YEARS
- DECADES
- CENTURIES
- MILLENNIA
- ERAS
所有其他ChronoUnit实例将返回false。
语法
public boolean isSupported(TemporalUnit unit)
参数: 该方法只接受一个参数 unit ,代表要检查的TemporalUnit。
返回值: 如果该单位在这个年份被支持,该方法返回布尔值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)