首頁  >  文章  >  Java  >  在Java 9中什麼時候使用Stream的ofNullable()方法?

在Java 9中什麼時候使用Stream的ofNullable()方法?

WBOY
WBOY轉載
2023-08-26 13:21:071306瀏覽

在Java 9中什么时候使用Stream的ofNullable()方法?

ofNullable() 方法是Stream 類別的靜態方法,如果非空,則傳回包含單一元素的順序Stream ,否則返回空。 Java 9 引入此方法是為了避免 NullPointerExceptions 並避免流的空檢查。使用 ofNullable() 方法的主要目標是在值為 null 時傳回空白選項

語法 H2>
<strong>static <T> Stream<T> ofNullable(T t)</strong>

範例 1

import java.util.stream.Stream;
public class OfNullableMethodTest1 {
   public static void main(String args[]) {
      System.out.println("TutorialsPoint");
      int count = (int) Stream.<strong>ofNullable</strong>(5000).count();
      System.out.println(count);
      System.out.println("Tutorix");
      count = (int) Stream.<strong>ofNullable</strong>(null).count();
      System.out.println(count);
   }
}

輸出

<strong>TutorialsPoint
1
Tutorix
0</strong>

範例 2

import java.util.stream.Stream;
public class OfNullableMethodTest2 {
   public static void main(String args[]) {
      String str = null;
      Stream.<strong>ofNullable</strong>(str).forEach(System.out::println); <strong>// prints nothing in the console</strong>
      str = "TutorialsPoint";
      Stream.<strong>ofNullable</strong>(str).forEach(System.out::println); <strong>// prints TutorialsPoint</strong>
   }
}

輸出

<strong>TutorialsPoint</strong>

以上是在Java 9中什麼時候使用Stream的ofNullable()方法?的詳細內容。更多資訊請關注PHP中文網其他相關文章!

陳述:
本文轉載於:tutorialspoint.com。如有侵權,請聯絡admin@php.cn刪除