OptionalInt nos ayuda a crear un objeto que puede o no contener un valor Int.
El método orElseThrow() nos ayuda a obtener el valor int y si el valor int no está presente, este método arrojará NoSuchElemenrException.
Sintaxis:
public Int orElseThrow()
Parámetros: Este método no acepta nada.
Valor devuelto: este método devuelve el valor Int descrito por este OptionalInt.
Excepción: este método arroja NoSuchElementException si no hay ningún valor presente
Los siguientes programas ilustran el método orElseThrow():
Programa 1:
// Java program to demonstrate // OptionalInt.orElseThrow() method import java.util.OptionalInt; public class GFG { public static void main(String[] args) { // create a OptionalInt OptionalInt opInt = OptionalInt.of(12345); // get value using orElseThrow() System.out.println("int Value extracted using" + " orElseThrow() = " + opInt.orElseThrow()); } }
Salida :
int Value extracted using orElseThrow() = 12345
Programa 2:
// Java program to demonstrate // OptionalInt.orElseThrow() method import java.util.OptionalInt; public class GFG { public static void main(String[] args) { // create a OptionalInt OptionalInt opInt = OptionalInt.empty(); try { // try to get value from empty OptionalInt int value = opInt.orElseThrow(); } catch (Exception e) { System.out.println("Exception thrown : " + e); } } }
Salida :
Exception thrown : java.util.NoSuchElementException: No value present
Referencias: https://docs.oracle.com/javase/10/docs/api/java/util/OptionalInt.html#orElseThrow()
Publicación traducida automáticamente
Artículo escrito por AmanSingh2210 y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA