java.util.Collections.synchronizedSet()


描述

所述synchronizedSet()方法用来返回的同步(thread-safe)排序组由指定有序set支持。

声明

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

public static <T> Set<T> synchronizedSet(Set<T> s)

参数

s - 这是在同步集中“包装”的集合。

返回值

方法调用返回指定集的同步视图。

异常

NA

实例

以下示例显示了java.util.Collections.synchronizedSet()的用法

package com.tutorialspoint;

import java.util.*;

public class CollectionsDemo {
   public static void main(String[] args) {

      // create set
      Set<String> set = new HashSet<String>();

      // populate the set
      set.add("TP");
      set.add("IS");
      set.add("FOR");
      set.add("TECHIES");

      // create a synchronized set
      Set<String> synset = Collections.synchronizedSet(set);

      System.out.println("Synchronized set is :"+synset);
   }
}

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

Synchronized set is :[FOR, IS, TECHIES, TP]