Java YearMonth isSupported(TemporalUnit)方法及示例
YearMonth 类的 isSupported(TemporalUnit) 方法用于检查指定的TemporalUnit是否被YearMonth类所支持。实际上,这个方法检查我们是否可以使用所传递的单位对指定的单位进行加减运算,这个YearMonth。如果是假的,那么调用plus(long, TemporalUnit)和minus方法将抛出一个异常。
ChronoUnit(Temporalunit)支持的单位是。
- MONTHS
- YEARS
- DECADES
- CENTURIES
- MILLENNIA
- ERAS
所有其他ChronoUnit实例将返回false。
语法
public boolean isSupported(TemporalUnit unit)
参数: 该方法只接受一个参数 unit ,代表要检查的TemporalUnit。
返回值: 如果该单位在这个YearMonth上被支持,该方法返回一个布尔值true,如果不支持,则返回false。
下面的程序说明了isSupported(TemporalUnit)方法:
程序1 :
// Java program to demonstrate
// YearMonth.isSupported(TemporalUnit) method
import java.time.*;
import java.time.temporal.*;
public class GFG {
public static void main(String[] args)
{
// Create a YearMonth object
YearMonth thisYearMonth = YearMonth.of(2017, 8);
// print instance
System.out.println("YearMonth :"
+ thisYearMonth);
// apply isSupported() method
boolean value
= thisYearMonth.isSupported(
ChronoUnit.MONTHS);
// print result
System.out.println("MONTHS unit is supported by YearMonth class: "
+ value);
}
}
输出。
YearMonth :2017-08
MONTHS unit is supported by YearMonth class: true
程序2
// Java program to demonstrate
// YearMonth.isSupported(TemporalUnit) method
import java.time.*;
import java.time.temporal.*;
public class GFG {
public static void main(String[] args)
{
// create a YearMonth object
YearMonth thisYearMonth = YearMonth.of(2022, 12);
// print instance
System.out.println("YearMonth :"
+ thisYearMonth);
// apply isSupported() method
boolean value
= thisYearMonth.isSupported(
ChronoUnit.MILLENNIA);
// print result
System.out.println("MILLENNIA unit is supported: "
+ value);
}
}
输出。
YearMonth :2022-12
MILLENNIA unit is supported: true
参考资料:
https://docs.oracle.com/javase/10/docs/api/java/time/YearMonth.html#isSupported(java.time.temporal.TemporalUnit)