Java Collections 的 checkedQueue() 方法是一种返回给定 Set 的动态且类型安全的视图的方法。任何插入错误类型元素的尝试都将立即导致 ClassCastException。
用法:
public static <E> NavigableSet<E> checkedNavigableSet(NavigableSet<E> set, Class<E> datatype)
参数:
- set是输入集数据
- datatype是 set 可以容纳的元素类型
返回类型:此方法将返回给定 Set 的动态且类型安全的视图。
异常:
- ClassCastException:ClassCastException 是当我们试图将一个类从一种类型不正确地转换为另一种类型时在 Java 中引发的运行时异常。
范例1:
Java
// Java program to create a Tree set and
// display the elements in a typesafe way
import java.util.*;
public class GFG {
public static void main(String[] args)
{
// create a set of string type
NavigableSet<String> data = new TreeSet<>();
// Insert the values into the set
data.add("java");
data.add("php/jsp");
data.add("python");
data.add("R");
// type safe view of the set
System.out.println(Collections.checkedNavigableSet(
data, String.class));
}
}
输出
[R, java, php/jsp, python]
范例2:
Java
// Java program to create a Tree set and
// display the elements in a typesafe way
import java.util.*;
public class GFG {
public static void main(String[] args)
{
// create a set of string type
NavigableSet<Integer> data = new TreeSet<>();
// Insert the values into the set
data.add(1);
data.add(2);
data.add(3);
data.add(4);
// type safe view of the set
System.out.println(Collections.checkedNavigableSet(
data, Integer.class));
}
}
输出
[1, 2, 3, 4]
相关用法
- Java Java.util.Collections.rotate()用法及代码示例
- Java Java.util.Collections.disjoint()用法及代码示例
- Java Java.util.Collections.frequency()用法及代码示例
- Java Collections.reverse()用法及代码示例
- Java Collections.shuffle()用法及代码示例
- Java Collections singletonMap()用法及代码示例
- Java Collections min()用法及代码示例
- Java Collections max()用法及代码示例
- Java Collections addAll()用法及代码示例
- Java Collections asLifoQueue()用法及代码示例
- Java Collections unmodifiableCollection()用法及代码示例
- Java Collections unmodifiableSortedMap()用法及代码示例
- Java Collections unmodifiableSet()用法及代码示例
- Java Collections unmodifiableMap()用法及代码示例
- Java Collections unmodifiableList()用法及代码示例
- Java Collections checkedCollection()用法及代码示例
- Java Collections checkedSet()用法及代码示例
- Java Collections checkedSortedMap()用法及代码示例
- Java Collections checkedSortedSet()用法及代码示例
- Java Collections enumeration()用法及代码示例
- Java Collections copy()用法及代码示例
- Java Collections fill()用法及代码示例
- Java Collections indexOfSubList()用法及代码示例
注:本文由纯净天空筛选整理自sireeshakanneganti112大神的英文原创作品 Java Collections checkedNavigableSet() Method with Examples。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。