Java 中的 LocalDateTime isSupported() 方法
利用 Java 中 LocalDateTime 类的 isSupported() 方法,可以检查 ChronoUnit 是否受 LocalDateTime 类的支持。此方法需要一个参数,即要检查的 ChronoUnit。如果 LocalDateTime 类支持 ChronoUnit,则返回 true;否则返回 false。
如下所示,提供了一个对此进行演示的程序 −
例
import java.time.*; import java.time.temporal.*; public class Demo { public static void main(String[] args) { LocalDateTime ldt = LocalDateTime.now(); System.out.println("The LocalDateTime is: " + ldt); boolean flag = ldt.isSupported(ChronoUnit.HOURS); if(flag) System.out.println("The ChronoUnit HOURS is supported"); else System.out.println("The ChronoUnit HOURS is not supported"); } }
输出
The LocalDateTime is: 2019-02-18T07:12:12.472 The ChronoUnit HOURS is supported
现在我们来了解一下上述程序。
首先,显示当前时间。然后,使用 isSupported() 方法来检查 ChronoUnit HOURS 是否受 LocalDateTime 类的支持。将返回的值存储在 flag 中,并打印出相应的响应。如下所示,提供了一个对此进行演示的代码片段 −
LocalDateTime ldt = LocalDateTime.now(); System.out.println("The LocalDateTime is: " + ldt); boolean flag = ldt.isSupported(ChronoUnit.HOURS); if(flag) System.out.println("The ChronoUnit HOURS is supported"); else System.out.println("The ChronoUnit HOURS is not supported");
广告