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]