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。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。