java.util.Collections類的synchronizedSortedSet()方法用於返回由指定排序集支持的同步(線程安全)排序集。為了保證串行訪問,至關重要的是所有對後備排序集的訪問都必須通過返回的排序集(或其視圖)來完成。
用法:
public static <T> SortedSet<T> synchronizedSortedSet(SortedSet<T> s)
參數:此方法將排序後的集合作為參數,作為同步排序後的集合中的“wrapped”。
返回值:此方法返回指定排序集的同步視圖。
以下示例說明了synchronizedSortedSet()方法
示例1:
// Java program to demonstrate
// synchronizedSortedSet() method
// for <String> Value
import java.util.*;
public class GFG1 {
public static void main(String[] argv)
throws Exception
{
try {
// creating object of SortedSet<String>
SortedSet<String> set = new TreeSet<String>();
// populate the set
set.add("A");
set.add("B");
set.add("C");
set.add("D");
// printing the Collection
System.out.println("Sorted Set : " + set);
// create a synchronized sorted set
SortedSet<String>
sorset = Collections
.synchronizedSortedSet(set);
// printing the set
System.out.println("Sorted set is : "
+ sorset);
}
catch (IllegalArgumentException e) {
System.out.println("Exception thrown : " + e);
}
}
}
輸出:
Sorted Set : [A, B, C, D] Sorted set is : [A, B, C, D]
示例2:
// Java program to demonstrate
// synchronizedSortedSet() method
// for <Integer> Value
import java.util.*;
public class GFG1 {
public static void main(String[] argv)
throws Exception
{
try {
// creating object of SortedSet<String>
SortedSet<Integer>
set = new TreeSet<Integer>();
// populate the set
set.add(10);
set.add(20);
set.add(30);
set.add(40);
// printing the Collection
System.out.println("Sorted Set : " + set);
// create a synchronized sorted set
SortedSet<Integer>
sorset = Collections
.synchronizedSortedSet(set);
// printing the set
System.out.println("Sorted set is : "
+ sorset);
}
catch (IllegalArgumentException e) {
System.out.println("Exception thrown : " + e);
}
}
}
輸出:
Sorted Set : [10, 20, 30, 40] Sorted set is : [10, 20, 30, 40]
相關用法
- Java Collections max()用法及代碼示例
- Java Collections min()用法及代碼示例
- Java Collections asLifoQueue()用法及代碼示例
- Java Collections synchronizedCollection()用法及代碼示例
- Java Collections synchronizedList()用法及代碼示例
- Java Collections unmodifiableCollection()用法及代碼示例
- Java Collections list()用法及代碼示例
- Java Collections newSetFromMap()用法及代碼示例
- Java Collections replaceAll()用法及代碼示例
- Java Collections swap()用法及代碼示例
- Java Collections singletonMap()用法及代碼示例
- Java Collections singletonList()用法及代碼示例
- Java Collections checkedSet()用法及代碼示例
- Java Collections synchronizedMap()用法及代碼示例
- Java Collections synchronizedSet()用法及代碼示例
注:本文由純淨天空篩選整理自RohitPrasad3大神的英文原創作品 Collections synchronizedSortedSet() method in Java with Examples。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。