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中文网其他相关文章!