当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Java Collections checkedSortedSet()用法及代码示例


java.util.Collections类的checkedSortedSet()方法用于返回指定排序集的动态类型安全视图。

如果指定的排序集可序列化,则返回的排序集将可序列化。

由于将null视为任何引用类型的值,因此只要有后继排序集可以,返回的排序集就允许插入空元素。


用法:

public static  SortedSet checkedSortedSet(SortedSet s, Class type)

参数:此方法将以下参数作为参数:

  • s –要为其返回动态类型安全视图的排序集
  • type –允许s保留的元素的类型

返回值:此方法返回指定排序集的动态类型安全视图。

以下示例说明了checkedSortedSet()方法

示例1:

// Java program to demonstrate 
// checkedSortedSet() method 
// for String value 
  
import java.util.*; 
  
public class GFG1 { 
    public static void main(String[] argv) 
        throws Exception 
    { 
  
        try { 
  
            // creating object of SortedMap<String> 
            SortedSet<String> sset = new TreeSet<String>(); 
  
            // Adding elemnet to smap 
            sset.add("Ram"); 
            sset.add("Gopal"); 
            sset.add("Verma"); 
  
            // printing the sorted set 
            System.out.println("Sorted Set: " + sset); 
  
            // create typesafe view of the specified set 
            // using checkedSortedSet() method 
            SortedSet<String> 
                tsset = Collections 
                            .checkedSortedSet(sset, String.class); 
  
            // printing the typesafe view of specified set 
            System.out.println("Typesafe view of sorted set: \n"
                               + tsset); 
        } 
  
        catch (IllegalArgumentException e) { 
            System.out.println("Exception thrown : " + e); 
        } 
    } 
}
输出:
Sorted Set: [Gopal, Ram, Verma]
Typesafe view of sorted set: 
[Gopal, Ram, Verma]

示例2:

// Java program to demonstrate 
// checkedSortedSet() method 
// for Integer value 
  
import java.util.*; 
  
public class GFG1 { 
    public static void main(String[] argv) throws Exception 
    { 
        try { 
  
            // creating object of SortedSet<Integer> 
            SortedSet<Integer> sset = new TreeSet<Integer>(); 
  
            // Adding elemnet to smap 
            sset.add(20); 
            sset.add(30); 
            sset.add(40); 
  
            // printing the sorted set 
            System.out.println("Sorted Set: " + sset); 
  
            // create typesafe view of the specified set 
            // using checkedSortedSet() method 
            SortedSet<Integer> tsset = Collections.checkedSortedSet(sset, Integer.class); 
  
            // printing the typesafe view of specified set 
            System.out.println("Typesafe view of sorted set: \n"
                               + tsset); 
        } 
  
        catch (IllegalArgumentException e) { 
            System.out.println("Exception thrown : " + e); 
        } 
    } 
}
输出:
Sorted Set: [20, 30, 40]
Typesafe view of sorted set: 
[20, 30, 40]


相关用法


注:本文由纯净天空筛选整理自RohitPrasad3大神的英文原创作品 Collections checkedSortedSet() method in Java with Examples。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。