java.util.Collections.synchronizedSet() 方法

描述

synchronizedSet() 方法用于返回由指定排序集支持的同步(线程安全)排序集。


声明

以下是 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]