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。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。