java.util.Collections.synchronizedSortedSet()方法實例
synchronizedSortedSet() 方法用於獲得同步的(線程安全的)有序set由指定的有序set支持。
聲明
以下是 java.util.Collections.synchronizedSortedSet()方法的聲明。
public static <T> SortedSet<T> synchronizedSortedSet(SortedSet<T> s)
參數
-
s--這是一個有序集合被“包裝”在同步有序set。
返回值
-
在方法調用返回指定有序set的同步視圖。
異常
-
NA
例子
下麵的例子顯示java.util.Collections.synchronizedSortedSet()方法的使用
package com.yiibai; import java.util.*; public class CollectionsDemo { public static void main(String[] args) { // create set SortedSet<String> set = new TreeSet<String>(); // populate the set set.add("TP"); set.add("IS"); set.add("FOR"); set.add("TECHIES"); // create a synchronized sorted set SortedSet sorset = Collections.synchronizedSortedSet(set); System.out.println("Sorted set is :"+sorset); } }
現在編譯和運行上麵的代碼示例,將產生以下結果。
Sorted set is :[FOR, IS, TECHIES, TP]