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


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


java.util.Collections类的synchronizedSortedSet()方法用于返回由指定排序集支持的同步(线程安全)排序集。为了保证串行访问,至关重要的是所有对后备排序集的访问都必须通过返回的排序集(或其视图)来完成。

用法:

public static <T> SortedSet<T>
  synchronizedSortedSet(SortedSet<T> s)

参数:此方法将排序后的集合作为参数,作为同步排序后的集合中的“wrapped”。


返回值:此方法返回指定排序集的同步视图。

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

示例1:

// Java program to demonstrate 
// synchronizedSortedSet() method 
// for <String> Value 
  
import java.util.*; 
  
public class GFG1 { 
    public static void main(String[] argv) 
        throws Exception 
    { 
  
        try { 
  
            // creating object of SortedSet<String> 
            SortedSet<String> set = new TreeSet<String>(); 
  
            // populate the set 
            set.add("A"); 
            set.add("B"); 
            set.add("C"); 
            set.add("D"); 
  
            // printing the Collection 
            System.out.println("Sorted Set : " + set); 
  
            // create a synchronized sorted set 
            SortedSet<String> 
                sorset = Collections 
                             .synchronizedSortedSet(set); 
  
            // printing the set 
            System.out.println("Sorted set is : "
                               + sorset); 
        } 
  
        catch (IllegalArgumentException e) { 
            System.out.println("Exception thrown : " + e); 
        } 
    } 
}
输出:
Sorted Set : [A, B, C, D]
Sorted set is : [A, B, C, D]

示例2:

// Java program to demonstrate 
// synchronizedSortedSet() method 
// for <Integer> Value 
  
import java.util.*; 
  
public class GFG1 { 
    public static void main(String[] argv) 
        throws Exception 
    { 
  
        try { 
  
            // creating object of SortedSet<String> 
            SortedSet<Integer> 
                set = new TreeSet<Integer>(); 
  
            // populate the set 
            set.add(10); 
            set.add(20); 
            set.add(30); 
            set.add(40); 
  
            // printing the Collection 
            System.out.println("Sorted Set : " + set); 
  
            // create a synchronized sorted set 
            SortedSet<Integer> 
                sorset = Collections 
                             .synchronizedSortedSet(set); 
  
            // printing the set 
            System.out.println("Sorted set is : "
                               + sorset); 
        } 
  
        catch (IllegalArgumentException e) { 
            System.out.println("Exception thrown : " + e); 
        } 
    } 
}
输出:
Sorted Set : [10, 20, 30, 40]
Sorted set is : [10, 20, 30, 40]


相关用法


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