🎓 Top 15 Udemy Courses (80-90% Discount): My Udemy Courses - Ramesh Fadatare — All my Udemy courses are real-time and project oriented courses.
▶️ Subscribe to My YouTube Channel (178K+ subscribers): Java Guides on YouTube
▶️ For AI, ChatGPT, Web, Tech, and Generative AI, subscribe to another channel: Ramesh Fadatare on YouTube
In this tutorial, we will demonstrate how to get a value from the Optional class object using the get() method.
Get Value from Optional Object in Java - get() Method
package com.java.lambda.optional;
import java.util.Optional;
public class OptionalDemo {
public static void main(String[] args) {
String email = "ramesh@gmail.com";
Optional<String> stringOptional = Optional.ofNullable(email);
String value = stringOptional.get();
System.out.println(value);
}
}ramesh@gmail.comIn the below example, the get() method throws the NoSuchElementException because the value is not present in the Optional class object:
package com.java.lambda.optional;
import java.util.Optional;
public class OptionalDemo {
public static void main(String[] args) {
String email = null;
Optional<String> stringOptional = Optional.ofNullable(email);
String value = stringOptional.get();
System.out.println(value);
}
}
Output:
Exception in thread "main" java.util.NoSuchElementException: No value present
at java.base/java.util.Optional.get(Optional.java:143)
at com.java.lambda.optional.OptionalDemo.main(OptionalDemo.java:10)
Comments
Post a Comment
Leave Comment