New to Java 8: Optionals - Java Tutorial

Опубликовано: 28 Октябрь 2024
на канале: Aneesh Mistry
802
17

This video will explore the Optional class and the API methods that are introduced with it in Java 8.
The Optional class will enable you to check for null, perform default operations if a value returns null, and also use custom logic as a response on a single line.

No longer will you be required to perform repetitive and cumbersome null pointer checks in your code as you can
conveniently handle potential nulls values with the Optional class API.



🕒 Timestamps 🕒


00:00 - Intro to Optionals
01:55 - Creating an Optional
03:18 - Optional.OfNullable
04:13 - Checking an Optional value
06:33 - Assigning default values