📜  Java Collections checkedNavigableSet() 方法和示例

📅  最后修改于: 2022-05-13 01:54:38.080000             🧑  作者: Mango

Java Collections checkedNavigableSet() 方法和示例

Java Collections 的checkedQueue()方法是一种返回给定 Set 的动态且类型安全的视图的方法。任何插入错误类型元素的尝试都将立即导致 ClassCastException。

句法:

public static  NavigableSet checkedNavigableSet(NavigableSet set, Class 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 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));
    }
}


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 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));
    }
}


输出
[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 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]