编程语言
首页 > 编程语言> > java-将List.of用于具有单个元素而不是Collections.singletonList的不可变列表

java-将List.of用于具有单个元素而不是Collections.singletonList的不可变列表

作者:互联网

Java 9引入了工厂方法来使用List.of创建不可变列表.

哪个更适合创建一个元素的不可变列表?

    List<String> immutableList1 = List.of("one");
    List<String> immutableList2 = Collections.singletonList("one");

解决方法:

首选使用工厂方法

List<String> immutableList1 = List.of("one");

因为它们不允许使用null元素,所以它是好处之一,并且List接口中的工厂方法也很容易添加多个对象并创建不可变的List

They disallow null elements. Attempts to create them with null elements result in NullPointerException.

其中Collections.singletonList允许为空值

List<String> l = Collections.singletonList(null);
System.out.println(l);   //[null]

标签:java-9,java
来源: https://codeday.me/bug/20191211/2105436.html