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


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。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。