當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


Java OptionalInt isPresent()用法及代碼示例


OptionalInt幫助我們創建一個可能包含或可能不包含Int值的對象。 isPresent()方法可幫助我們獲得答案:Int值是否存在於OptionalInt對象中。如果此對象中存在int值,則此方法返回true,否則返回false。

用法:

public boolean isPresent()

參數:此方法不接受任何內容。


返回值:如果存在int值,則此方法返回true,否則返回false

以下示例程序旨在說明isPresent()方法:
示例1:

// Java program to demonstrate 
// OptionalInt.isPresent() method 
  
import java.util.OptionalInt; 
  
public class GFG { 
  
    public static void main(String[] args) 
    { 
  
        // create a OptionalInt 
        OptionalInt opInt = OptionalInt.of(12345); 
  
        // get value using isPresent() 
        System.out.println("OptionalInt has a value= "
                           + opInt.isPresent()); 
    } 
}
輸出:
OptionalInt has a value= true

示例2:

// Java program to demonstrate 
// OptionalInt.isPresent() method 
  
import java.util.OptionalInt; 
  
public class GFG { 
  
    public static void main(String[] args) 
    { 
  
        // create a OptionalInt 
        OptionalInt opInt = OptionalInt.empty(); 
  
        // try to get that value is present or not 
        boolean response = opInt.isPresent(); 
  
        if (response) 
            System.out.println("Value present"); 
        else
            System.out.println("Value absent"); 
    } 
}
輸出:
Value absent

參考文獻: https://docs.oracle.com/javase/10/docs/api/java/util/OptionalInt.html#isPresent()



相關用法


注:本文由純淨天空篩選整理自AmanSingh2210大神的英文原創作品 OptionalInt isPresent() method in Java with examples。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。