Java OptionalInt ifPresent(IntConsumer)方法及示例
ifPresentOrElse( java.util.function.IntConsumer ) 方法帮助我们执行指定的IntConsumer动作这个OptionalInt对象的值。如果这个OptionalInt对象中不存在一个值,那么这个方法就不做任何事情。
语法
public void ifPresentOrElse(IntConsumer action)
参数: 该方法接受一个参数action,如果有一个值的话,该参数是对这个Optional进行的操作。
返回值: 此方法不返回任何东西。
异常: 如果有一个值存在而给定的动作是空的,该方法会抛出 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)