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