Java Collections 類的 emptySet() 方法用於獲取沒有元素的 Set。這些空集本質上是不可變的。
用法
以下是 emptySet() 方法的聲明:
public static final <T> Set<T> emptySet()
參數
此方法不接受任何參數。
返回
emptySet() 方法返回一個空的不可變 Set。
異常
NA
兼容版本
Java 1.5 及以上
例子1
import java.util.*;
public class CollectionsEmptySetExample1 {
public static void main(String[] args) {
//Create an empty Set
Set<String> EmptySet = Collections.<String>emptySet();
System.out.println("Empty Set:"+EmptySet);
}
}
輸出:
Empty Set:[]
例子2
import java.util.*;
public class CollectionsEmptySetExample2 {
public static void main(String[] args) {
//Create an empty Set
Set<String> EmptySet = Collections.emptySet();
System.out.println("Created empty immutable Set:"+EmptySet);
//Try to add elements
EmptySet.add("A");
EmptySet.add("B");
}
}
輸出:
Created empty immutable Set:[] Exception in thread "main" java.lang.UnsupportedOperationException at java.base/java.util.AbstractCollection.add(AbstractCollection.java:267) at myPackage.CollectionsEmptySetExample2.main(CollectionsEmptySetExample2.java:10)
例子3
import java.util.*;
public class CollectionsEmptySetExample3 {
public static void main(String[] args) {
//Create an empty Set
Set<Integer> empSet = Collections.emptySet();
empSet.add(1);
empSet.add(2);
System.out.println("Created empty immutable Set:"+empSet);
}
}
輸出:
Exception in thread "main" java.lang.UnsupportedOperationException at java.base/java.util.AbstractCollection.add(AbstractCollection.java:267) at myPackage.CollectionsEmptySetExample3.main(CollectionsEmptySetExample3.java:8)
相關用法
- Java Collections emptySet()用法及代碼示例
- Java Collections emptySortedSet()用法及代碼示例
- Java Collections emptySortedMap()用法及代碼示例
- Java Collections emptyListIterator()用法及代碼示例
- Java Collections emptyNavigableSet()用法及代碼示例
- Java Collections emptyMap()用法及代碼示例
- Java Collections emptyNavigableMap()用法及代碼示例
- Java Collections emptyEnumeration()用法及代碼示例
- Java Collections emptyIterator()用法及代碼示例
- Java Collections emptyList()用法及代碼示例
- 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 emptySet() Method。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。