Java中的 OptionalInt ifPresent(IntConsumer) 方法及示例
ifPresentOrElse(Java 函数.IntConsumer)方法帮助我们对这个 OptionalInt 对象的值执行指定的 IntConsumer 动作。如果此 OptionalInt 中不存在值,则此方法不执行任何操作。
句法:
public void ifPresentOrElse(IntConsumer action)
参数:此方法接受参数操作,如果存在值,则该操作是要在此 Optional 上执行的操作。
返回值:此方法不返回任何内容。
异常:如果存在值且给定操作为空,则此方法抛出NullPointerException 。
下面的程序说明了 ifPresent(IntConsumer) 方法:
方案一:
// 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);
});
}
}
输出:
方案二:
// 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: Java Java 函数)