Java中的 OptionalInt orElseGet() 方法及示例
orElseGet(Java 函数.IntSupplier)方法帮助我们获取这个 OptionalInt 对象中的值。如果此 OptionalInt 中不存在值,则此方法返回由提供函数产生的结果,作为参数传递
句法:
public int orElseGet(IntSupplier supplier)
参数:此方法接受产生要返回的值的提供函数。
返回值:此方法返回 int 值(如果存在),否则返回由提供函数产生的结果。
异常:如果不存在任何值且提供函数为 null,则此方法抛出NullPointerException 。
下面的程序说明了 orElseGet(Java 函数.IntSupplier) 方法:
方案一:
// Java program to demonstrate
// OptionalInt.orElseGet(IntSupplier) method
import java.util.OptionalInt;
public class GFG {
public static void main(String[] args)
{
// create a OptionalInt
OptionalInt opint = OptionalInt.of(2134);
// get value using orElseGet
int value = opint.orElseGet(() -> getintValue());
// print value
System.out.println("value: " + value);
}
public static int getintValue()
{
return 3242 + 123;
}
}
输出:
value: 2134
方案二:
// Java program to demonstrate
// OptionalInt.orElseGet(IntSupplier) method
import java.util.OptionalInt;
public class GFG {
public static void main(String[] args)
{
// create a OptionalInt
OptionalInt opint = OptionalInt.empty();
// get value using orElseGet
int value = opint.orElseGet(() -> getintValue());
// print value
System.out.println("value: " + value);
}
public static int getintValue()
{
return 3242 * 234;
}
}
输出:
value: 758628
参考: https: Java Java 函数)