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


Java ValueRange isIntValue()用法及代码示例


ValueRange类的isIntValue()方法用于检查ValueRange中的所有值是否都适合int。此方法验证所有有效值是否在整数范围内。

用法:

public boolean isIntValue()

参数:此方法不接受任何内容。


返回值:如果有效值始终适合int,则此方法返回true。

以下示例程序旨在说明ValueRange.isIntValue()方法:
程序1:

// Java program to demonstrate 
// ValueRange.isIntValue() method 
  
import java.time.LocalDateTime; 
import java.time.temporal.ChronoField; 
import java.time.temporal.ValueRange; 
  
public class GFG { 
    public static void main(String[] args) 
    { 
  
        // create LocalDateTime 
        LocalDateTime l1 
            = LocalDateTime 
                  .parse("2018-12-06T19:21:12"); 
  
        // Get ValueRange object 
        ValueRange vR 
            = l1.range(ChronoField.DAY_OF_MONTH); 
  
        // apply isIntValue() 
        boolean response = vR.isIntValue(); 
  
        // print results 
        System.out.println("isIntValue:"
                           + response); 
    } 
}
输出:
isIntValue:true

程序2:

// Java program to demonstrate 
// ValueRange.isIntValue() method 
  
import java.time.temporal.ValueRange; 
  
public class GFG { 
    public static void main(String[] args) 
    { 
  
        // create ValueRange object 
        ValueRange vRange = ValueRange.of(1111, 66666); 
  
        // apply isIntValue() 
        boolean response = vRange.isIntValue(); 
  
        // print results 
        System.out.println("isIntValue:"
                           + response); 
    } 
}
输出:
isIntValue:true

参考:https://docs.oracle.com/javase/10/docs/api/java/time/temporal/ValueRange.html#isIntValue()



相关用法


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