Collections类unmodifiableSortedSet()方法
- unmodifiableSortedSet() 方法可在
java.util
包。 - unmodifiableSortedSet() 方法用于获取给定 SortedSet (ss) 的不可修改视图。
- unmodifiableSortedSet() 方法是一个静态方法,它可以通过类名访问,如果我们尝试使用类对象访问该方法,那么我们也不会得到任何错误。
- unmodifiableSortedSet() 方法在返回给定排序集的不可修改视图时不会抛出异常。
用法:
public static SortedSet unmodifiableSortedSet(SortedSet ss);
参数:
SortedSet ss
– 表示要为其检索不可修改视图的排序集对象。
返回值:
这个方法的返回类型是SortedSet
,它返回给定排序集的不可修改视图。
例:
// Java program to demonstrate the example
// of SortedSet unmodifiableSortedSet()
// method of Collections
import java.util.*;
public class UnmodifiableSortedSetOfCollections {
public static void main(String args[]) {
// Instantiates a sorted set object
SortedSet < Integer > ss = new TreeSet < Integer > ();
// By using add() method is to add
//objects in a sorted set
ss.add(20);
ss.add(10);
ss.add(40);
ss.add(30);
ss.add(50);
// Display Sorted Set
System.out.println("SortedSet:" + ss);
// By using unmodifiableSortedSet() method is to
// represent the tree set in unmodifiable view
ss = Collections.synchronizedSortedSet(ss);
// We will get an exception when we
// try to add an object in an unmodifiable
// sorted set
/* ss.add(60)*/
}
}
输出
SortedSet:[10, 20, 30, 40, 50]
相关用法
- Java Collections unmodifiableSortedMap()用法及代码示例
- Java Collections unmodifiableSet()用法及代码示例
- Java Collections unmodifiableNavigableSet()用法及代码示例
- Java Collections unmodifiableNavigableMap()用法及代码示例
- Java Collections unmodifiableList()用法及代码示例
- Java Collections unmodifiableMap()用法及代码示例
- Java Collections unmodifiableCollection()用法及代码示例
- Java Collections synchronizedSortedSet()用法及代码示例
- Java Collections checkedQueue()用法及代码示例
- Java Collections checkedSet()用法及代码示例
- Java Collections copy()用法及代码示例
- Java Collections checkedMap()用法及代码示例
- Java Collections synchronizedNavigableSet()用法及代码示例
- Java Collections singleton()用法及代码示例
- Java Collections fill()用法及代码示例
- Java Collections nCopies()用法及代码示例
- Java Collections emptySet()用法及代码示例
- Java Collections newSetFromMap()用法及代码示例
- Java Collections checkedSortedMap()用法及代码示例
- Java Collections addAll()用法及代码示例
注:本文由纯净天空筛选整理自Preeti Jain大神的英文原创作品 Java Collections unmodifiableSortedSet() Method with Example。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。