ofNullable() 方法是Stream 類別的靜態方法,如果非空,則傳回包含單一元素的順序Stream ,否則返回空。 Java 9 引入此方法是為了避免 NullPointerExceptions 並避免流的空檢查。使用 ofNullable() 方法的主要目標是在值為 null 時傳回空白選項。
<strong>static <T> Stream<T> ofNullable(T t)</strong>
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>
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中文網其他相關文章!