java.util.Collections類的checkedSortedSet()方法用於返回指定排序集的動態類型安全視圖。
如果指定的排序集可序列化,則返回的排序集將可序列化。
由於將null視為任何引用類型的值,因此隻要有後繼排序集可以,返回的排序集就允許插入空元素。
用法:
public static SortedSet checkedSortedSet(SortedSet s, Class type)
參數:此方法將以下參數作為參數:
- s –要為其返回動態類型安全視圖的排序集
- type –允許s保留的元素的類型
返回值:此方法返回指定排序集的動態類型安全視圖。
以下示例說明了checkedSortedSet()方法
示例1:
// Java program to demonstrate
// checkedSortedSet() method
// for String value
import java.util.*;
public class GFG1 {
public static void main(String[] argv)
throws Exception
{
try {
// creating object of SortedMap<String>
SortedSet<String> sset = new TreeSet<String>();
// Adding elemnet to smap
sset.add("Ram");
sset.add("Gopal");
sset.add("Verma");
// printing the sorted set
System.out.println("Sorted Set: " + sset);
// create typesafe view of the specified set
// using checkedSortedSet() method
SortedSet<String>
tsset = Collections
.checkedSortedSet(sset, String.class);
// printing the typesafe view of specified set
System.out.println("Typesafe view of sorted set: \n"
+ tsset);
}
catch (IllegalArgumentException e) {
System.out.println("Exception thrown : " + e);
}
}
}
輸出:
Sorted Set: [Gopal, Ram, Verma] Typesafe view of sorted set: [Gopal, Ram, Verma]
示例2:
// Java program to demonstrate
// checkedSortedSet() method
// for Integer value
import java.util.*;
public class GFG1 {
public static void main(String[] argv) throws Exception
{
try {
// creating object of SortedSet<Integer>
SortedSet<Integer> sset = new TreeSet<Integer>();
// Adding elemnet to smap
sset.add(20);
sset.add(30);
sset.add(40);
// printing the sorted set
System.out.println("Sorted Set: " + sset);
// create typesafe view of the specified set
// using checkedSortedSet() method
SortedSet<Integer> tsset = Collections.checkedSortedSet(sset, Integer.class);
// printing the typesafe view of specified set
System.out.println("Typesafe view of sorted set: \n"
+ tsset);
}
catch (IllegalArgumentException e) {
System.out.println("Exception thrown : " + e);
}
}
}
輸出:
Sorted Set: [20, 30, 40] Typesafe view of sorted set: [20, 30, 40]
相關用法
- Java Collections max()用法及代碼示例
- Java Collections min()用法及代碼示例
- Java Collections synchronizedList()用法及代碼示例
- Java Collections asLifoQueue()用法及代碼示例
- Java Collections synchronizedCollection()用法及代碼示例
- Java Collections unmodifiableCollection()用法及代碼示例
- Java Collections list()用法及代碼示例
- Java Collections newSetFromMap()用法及代碼示例
- Java Collections replaceAll()用法及代碼示例
- Java Collections swap()用法及代碼示例
- Java Collections synchronizedMap()用法及代碼示例
- Java Collections singletonMap()用法及代碼示例
- Java Collections singletonList()用法及代碼示例
- Java Collections checkedSet()用法及代碼示例
- Java Collections synchronizedSet()用法及代碼示例
注:本文由純淨天空篩選整理自RohitPrasad3大神的英文原創作品 Collections checkedSortedSet() method in Java with Examples。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。