Home > Java > javaTutorial > body text

When should you use Optional.orElseGet() instead of Optional.orElse()?

Linda Hamilton
Release: 2024-10-26 22:47:31
Original
443 people have browsed it

When should you use Optional.orElseGet() instead of Optional.orElse()?

Difference between Optional.orElse() and Optional.orElseGet()

The Optional class provides methods like orElse() and orElseGet() to retrieve the value from an Optional if it is present, or provide a default value if it is empty. However, there is a subtle difference in their behavior:

  • orElse(): Always calls the provided function to get the default value, regardless of whether the Optional contains a value or not.
  • orElseGet(): Calls the provided function only if the Optional is empty.

When to Use orElseGet()

The key difference is that orElseGet() delays the execution of the default value retrieval function until it is needed, while orElse() always executes the function. This can be important in situations where obtaining the default value is an expensive or time-consuming operation that you only want to perform if necessary.

Example:

Consider a scenario where you need to find a resource (represented by an Optional) and retrieve its value, or else provide a default value. If obtaining the default value requires a costly database query, you would want to use orElseGet() to avoid the query when the resource is present.

<code class="java">Optional<Resource> resource = findResource();
Resource result = orElseGet(() -> getExpensiveDefaultValue());</code>
Copy after login

Additional Notes:

  • orElseGet() receives a Supplier interface implementation, which is a functional interface representing a no-argument function.
  • Even if orElseGet() does not call the provided function when the Optional is non-empty, it still evaluates the lambda expression. This means that any side effects within the expression will still occur.

Conclusion:

orElseGet() provides a way to defer the execution of a default value retrieval function until it is necessary, allowing performance optimizations in cases where obtaining the default value is expensive or undesirable when the Optional is non-empty.

The above is the detailed content of When should you use Optional.orElseGet() instead of Optional.orElse()?. For more information, please follow other related articles on the PHP Chinese website!

source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Latest Articles by Author
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!