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