Java Collections checkedSortedSet() 方法



描述

Java Collections checkedSortedSet(SortedSet<E>, Class<E>) 方法用于获取指定排序集的动态类型安全视图。

声明

以下是 java.util.Collections.checkedSortedSet() 方法的声明。

public static <E> SortedSet<E> checkedSortedSet(SortedSet<E> s, Class<E> type)

参数

  • s − 这是要返回其动态类型安全视图的排序集。

  • type − 这是 s 允许保存的元素类型。

返回值

方法调用返回指定排序集的动态类型安全视图。

异常

从整数 SortedSet 获取类型安全 SortedSet 示例

以下示例演示了如何使用 Java Collection checkedSortedSet(SortedSet,Class ) 方法获取整数排序集的类型安全视图。我们创建了一个包含一些整数的集合对象,并打印了原始集合。使用 checkedSortedSet(SortedSet, Integer) 方法,我们获取了一个 Integer 的排序集,然后打印它。

package com.tutorialspoint;

import java.util.Collections;
import java.util.SortedSet;
import java.util.TreeSet;

public class CollectionsDemo {

   public static void main(String[] args) {
      SortedSet<Integer> set = new TreeSet<>();

      set.add(1);
      set.add(2);
      set.add(3);
      set.add(4);
      set.add(5);

      System.out.println("Initial collection value: " + set);

      SortedSet<Integer> safeSet = Collections.checkedSortedSet(set, Integer.class);
      System.out.println("Typesafe View: "+safeSet);
   }
}

输出

让我们编译并运行上述程序,这将产生以下结果。

Initial collection value: [1, 2, 3, 4, 5]
Typesafe View: [1, 2, 3, 4, 5]

从字符串 SortedSet 获取类型安全 SortedSet 示例

以下示例演示了如何使用 Java Collection checkedSortedSet(SortedSet,Class ) 方法获取字符串集合的类型安全视图。我们创建了一个包含一些字符串的集合对象,并打印了原始集合。使用 checkedSortedSet(SortedSet, String) 方法,我们获取了一个 String 的排序集,然后打印它。

package com.tutorialspoint;

import java.util.Collections;
import java.util.SortedSet;
import java.util.TreeSet;

public class CollectionsDemo {

   public static void main(String[] args) {
      SortedSet<String> set = new TreeSet<>();

      set.add("Welcome");
      set.add("to");
      set.add("Tutorialspoint");

      System.out.println("Initial collection value: " + set);

      SortedSet<String> safeSet = Collections.checkedSortedSet(set, String.class);
      System.out.println("Typesafe View: "+safeSet);
   }
}

输出

让我们编译并运行上述程序,这将产生以下结果。

Initial collection value: [Tutorialspoint, Welcome, to]
Typesafe View: [Tutorialspoint, Welcome, to]

从对象 SortedSet 获取类型安全 SortedSet 示例

以下示例演示了如何使用 Java Collection checkedSortedSet(SortedSet,Class ) 方法获取 Student 对象集合的类型安全视图。我们创建了一个包含一些 Student 对象的 SortedSet 对象,并打印了原始集合。使用 checkedSortedSet(SortedSet, Student) 方法,我们获取了一个 Student 的 SortedSet,然后打印它。

package com.tutorialspoint;

import java.util.Collections;
import java.util.SortedSet;
import java.util.TreeSet;

public class CollectionsDemo {

   public static void main(String[] args) {
      SortedSet<Student> set = new TreeSet<>();

      set.add(new Student(1, "Julie"));
      set.add(new Student(2, "Robert"));
      set.add(new Student(3, "Adam"));

      System.out.println("Initial collection value: " + set);

      SortedSet<Student> safeSet = Collections.checkedSortedSet(set, Student.class);
      System.out.println("Typesafe View: "+safeSet);
   }
}
class Student implements Comparable<Student> {
   int rollNo;
   String name;

   Student(int rollNo, String name){
      this.rollNo = rollNo;
      this.name = name;
   }

   @Override
   public String toString() {
      return "[ " + this.rollNo + ", " + this.name + " ]";
   }

   @Override
   public int compareTo(Student student) {
      return student.rollNo - this.rollNo;
   }
}

输出

让我们编译并运行上述程序,这将产生以下结果。

Initial collection value: [[ 3, Adam ], [ 2, Robert ], [ 1, Julie ]]
Typesafe View: [[ 3, Adam ], [ 2, Robert ], [ 1, Julie ]]
java_util_collections.htm
广告