Java Collections 类的 emptyList() 方法用于获取一个没有元素的 List。这些空列表本质上是不可变的。
用法
以下是 emptyList() 方法的声明:
public static final <T> List<T> emptyList()
参数
此方法不接受任何参数。
返回
emptyList() 方法返回一个空的不可变列表。
异常
NA
兼容版本
Java 1.5 及以上
例子1
import java.util.*;
public class CollectionsEmptyListExample1 {
public static void main(String[] args) {
//Create an empty List
List<String> EmptyList = Collections.<String>emptyList();
System.out.println("Empty list:"+EmptyList);
}
}
输出:
Empty list:[]
例子2
import java.util.*;
public class CollectionsEmptyListExample2 {
public static void main(String[] args) {
//Create an empty List
List<String> emptylist = Collections.emptyList();
System.out.println("Created empty immutable list:"+emptylist);
//Try to add elements
emptylist.add("A");
emptylist.add("B");
}
}
输出:
Created empty immutable list:[] Exception in thread "main" java.lang.UnsupportedOperationException at java.base/java.util.AbstractList.add(AbstractList.java:153) at java.base/java.util.AbstractList.add(AbstractList.java:111) at myPackage.CollectionsEmptyListExample1.main(CollectionsEmptyListExample1.java:9)
例子3
import java.util.*;
public class CollectionsEmptyListExample3 {
public static void main(String[] args) {
//Create an empty List
List<Integer> empList = Collections.emptyList();
empList.add(1);
empList.add(2);
System.out.println("Created empty immutable List:"+empList);
}
}
输出:
Exception in thread "main" java.lang.UnsupportedOperationException at java.base/java.util.AbstractList.add(AbstractList.java:153) at java.base/java.util.AbstractList.add(AbstractList.java:111) at myPackage.CollectionsEmptyListExample3.main(CollectionsEmptyListExample3.java:8)
相关用法
- Java Collections emptyList()用法及代码示例
- Java Collections emptyListIterator()用法及代码示例
- Java Collections emptySet()用法及代码示例
- Java Collections emptySortedSet()用法及代码示例
- Java Collections emptyNavigableSet()用法及代码示例
- Java Collections emptyMap()用法及代码示例
- Java Collections emptySortedMap()用法及代码示例
- Java Collections emptyNavigableMap()用法及代码示例
- Java Collections emptyEnumeration()用法及代码示例
- Java Collections emptyIterator()用法及代码示例
- Java Collections enumeration()用法及代码示例
- Java Collections synchronizedSortedSet()用法及代码示例
- Java Collections checkedQueue()用法及代码示例
- Java Collections unmodifiableNavigableSet()用法及代码示例
- Java Collections checkedSet()用法及代码示例
- Java Collections copy()用法及代码示例
- Java Collections checkedMap()用法及代码示例
- Java Collections synchronizedNavigableSet()用法及代码示例
- Java Collections singleton()用法及代码示例
- Java Collections fill()用法及代码示例
注:本文由纯净天空筛选整理自 Java Collections emptyList() Method。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。