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。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。