当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Java Collections emptySortedSet()用法及代码示例


Java Collections 类的 emptySortedSet() 方法用于获取没有元素的有序 Set。这些空集本质上是不可变的。

用法

以下是 emptySortedSet() 方法的声明:

public static final <E> SortedSet<E> emptySortedSet()

参数

此方法不接受任何参数。

返回

emptySortedSet() 方法返回一个空的有序集合。

异常

NA

兼容版本

Java 1.8 及以上

例子1

import java.util.*;
public class CollectionsEmptySortedSetExample1 {
	public static void main(String[] args) {		
	     //Create an empty Sorted Set   
	     SortedSet<String> EmptySet = Collections.<String>emptySortedSet();
	     System.out.println("Empty Sorted Set:"+EmptySet);
	     }	  
}

输出:

Empty Sorted Set:[]

例子2

import java.util.*;
public class CollectionsEmptySortedSetExample2 {
	public static void main(String[] args) {		
		//Create an empty Sorted Set
	      SortedSet<String> EmpSortSet = Collections.emptySortedSet();
	      System.out.println("Created empty immutable Sorted Set:"+EmpSortSet);
	      //Try to add elements
	      EmpSortSet.add("A");
	      EmpSortSet.add("B");
	      }	  
}

输出:

Created empty immutable Sorted Set:[]Exception in thread "main" 
java.lang.UnsupportedOperationException
	at java.base/java.util.Collections$UnmodifiableCollection.add(Collections.java:1056)
	at myPackage.CollectionsEmptySortedSetExample2.main(CollectionsEmptySortedSetExample2.java:9)

例子3

import java.util.*;
public class CollectionsEmptySortedSetExample3 {
	public static void main(String[] args) {		
		//Create an empty Sorted Set    
	      SortedSet<Integer> empSortSet = Collections.emptySortedSet();
	      empSortSet.add(1);
	      empSortSet.add(2);    
	      System.out.println("Created empty immutable Sorted Set:"+empSortSet);     
	      }	  
}

输出:

Exception in thread "main" java.lang.UnsupportedOperationException
	at java.base/java.util.Collections$UnmodifiableCollection.add(Collections.java:1056)
	at myPackage.CollectionsEmptySortedSetExample3.main(CollectionsEmptySortedSetExample3.java:8)





相关用法


注:本文由纯净天空筛选整理自 Java Collections emptySortedSet() Method。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。