位置:首頁 > Java技術 > Java.util包 > java.util.Collections.synchronizedSet()方法實例

java.util.Collections.synchronizedSet()方法實例

synchronizedSet() 方法用於返回一個同步的(線程安全的)有序set由指定的有序set支持。

聲明

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

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

參數

  • s--這是一組可以在同步組“包裝”。

返回值

  • 在方法調用返回指定set的同步視圖。

異常

  • NA

例子

下麵的例子顯示java.util.Collections.synchronizedSet()方法的使用

package com.yiibai;

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]