Java中的 OptionalInt of(int) 方法及示例
of(int)方法帮助我们获取一个OptionalInt对象,该对象包含一个 int 值,该值作为参数传递给该方法。
句法:
public static OptionalInt of(int value)
参数:此方法接受一个int 值作为参数,该参数将设置为返回的 OptionalInt 对象。
返回值:此方法返回一个具有当前值的OptionalInt 。
下面的程序说明了 of(int) 方法:
方案一:
// Java program to demonstrate
// OptionalInt.of(int) method
import java.util.OptionalInt;
public class GFG {
public static void main(String[] args)
{
// Create a OptionalInt instance
// using of() method
OptionalInt opInt
= OptionalInt.of(452);
// Get value of this OptionalInt instance
System.out.println("OptionalInt: "
+ opInt);
}
}
输出:
OptionalInt: OptionalInt[452]
方案二:
// Java program to demonstrate
// OptionalInt.of(int) method
import java.util.OptionalInt;
public class GFG {
public static void main(String[] args)
{
// Create a OptionalInt instance
// using of() method
OptionalInt opInt
= OptionalInt.of(2149);
// Get value of this OptionalInt instance
System.out.println("OptionalInt: "
+ opInt);
}
}
输出:
OptionalInt: OptionalInt[2149]
参考资料: https: Java/util/OptionalInt.html#of(int)