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


Java OptionalInt ifPresent(IntConsumer)用法及代碼示例


ifPresentOrElse(java.util.function.IntConsumer)方法幫助我們執行此OptionalInt對象的值的指定IntConsumer操作。如果此OptionalInt中不存在值,則此方法不執行任何操作。

用法:

public void ifPresentOrElse(IntConsumer action)

參數:如果存在值,則此方法接受參數操作,該參數操作是在此Optional上要執行的操作。


返回值:此方法不返回任何內容。

異常:如果存在值且給定操作為null,則此方法拋出NullPointerException。

以下示例程序旨在說明ifPresent(IntConsumer)方法:

示例1:

// Java program to demonstrate 
// OptionalInt.ifPresent(IntConsumer) method 
  
import java.util.OptionalInt; 
  
public class GFG { 
  
    public static void main(String[] args) 
    { 
  
        // create a OptionalInt 
        OptionalInt opint = OptionalInt.of(2234); 
  
        // apply ifPresent(IntConsumer) 
        opint.ifPresent((value) -> { 
            value = value * 2; 
            System.out.println("Value after modification:=> "
                               + value); 
        }); 
    } 
}

輸出:

示例2:

// Java program to demonstrate 
// OptionalInt.ifPresent(IntConsumer) method 
  
import java.util.OptionalInt; 
  
public class GFG { 
  
    public static void main(String[] args) 
    { 
  
        // create a OptionalInt 
        OptionalInt opint = OptionalInt.empty(); 
  
        // apply ifPresent(IntConsumer) 
        opint.ifPresent((value) -> { 
            value = value * 2; 
            System.out.println("Value after modification:=> "
                               + value); 
        }); 
  
        System.out.println("As OptionalInt is empty value"
                           + " is not modified"); 
    } 
}

輸出:

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



相關用法


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