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


Java LocalDateTime isSupported()用法及代码示例


Java中的LocalDateTime类的isSupported()方法检查是否支持指定的单位或字段。

用法:

public boolean isSupported(TemporalUnit unit)
           or
public boolean isSupported(TemporalField field)

参数:此方法接受一个参数字段,该字段指定要检查的字段,null返回false;或者,它接受一个参数单元,指定要检查的字段,null返回false。


返回值:如果此日期支持字段单位,则该函数返回true,否则返回false。

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

程序1:

// Program to illustrate the isSupported(TemporalUnit) method 
  
import java.util.*; 
import java.time.*; 
import java.time.temporal.ChronoUnit; 
  
public class GfG { 
    public static void main(String[] args) 
    { 
        // Parses the date 
        LocalDateTime dt1 
            = LocalDateTime.parse("2018-11-03T12:45:30"); 
  
        // Prints the date 
        System.out.println(dt1); 
  
        System.out.println(dt1.isSupported(ChronoUnit.DAYS)); 
    } 
}
输出:
2018-11-03T12:45:30
true

程序2:

// Program to illustrate the isSupported(TemporalField) method 
  
import java.util.*; 
import java.time.*; 
import java.time.temporal.ChronoField; 
  
public class GfG { 
    public static void main(String[] args) 
    { 
        // Parses the date 
        LocalDateTime dt1 
            = LocalDateTime.parse("2018-11-03T12:45:30"); 
  
        // Prints the date 
        System.out.println(dt1); 
  
        System.out.println( 
            dt1 
                .isSupported(ChronoField.DAY_OF_WEEK)); 
    } 
}
输出:
2018-11-03T12:45:30
true

参考:https://docs.oracle.com/javase/10/docs/api/java/time/LocalDateTime.html#isSupported(java.time.temporal.TemporalField)



相关用法


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