Set<String> setStr=new HashSet<String>()

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Set<String> setStr=new HashSet<String>()相关的知识,希望对你有一定的参考价值。

Set<String> setStr=new HashSet<String>();SetStr是HashSet()为什么还要声明为Set?这样做有声明好处?说明了接口的什么特性?

这是java对态的一种表现,有时候可能不知道子类需要何种类型而声明一个接口.以后类似Set<String> setStr=new HashSet<String>();这种声明 其实SetStr是HashSet类型(虽然声明时为Set,但JVM运行时回自动把他转化为HashSet类型的),这种做法就更能体现接口的意义了. 参考技术A HashSet 是实现了set接口的。当然可以直接new hashset。
这样声明有灵活性,当你不想用hashset的时候,想用treeset的时候直接改下new类型就可以了。方便编程,所谓的接口编程。
参考技术B 利用接口编程,实现多态,这是java一大优点和优势,在其他方法中如需要用set的参数,就不用写hashset,同时treeset等set的实现都可以传进去的。 参考技术C 没区别.
这样做的好处是你可以:
setStr = new java.util.TreeSet();

java的ConcurrentModificationException问题

 1 public static void HashSetError() {
 2         Map<String, Set<String>> tempMap1 = new HashMap<String, Set<String>>();
 3         for (int i = 0; i < 10; i++) {
 4             Set<String> set = new HashSet<String>();
 5             set.add(String.valueOf(i));
 6             set.add(String.valueOf(i*10));
 7             tempMap1.put(String.valueOf(i), set);
 8         }
 9 
10         Map<String, Set<String>> tempMap2 = new HashMap<String, Set<String>>();
11 
12         Set<String> set = tempMap1.get(String.valueOf(5));
13         tempMap2.put("t", set);
14         
15         for(String str:set){
16             Set<String> tempSet = tempMap2.get("t");
17             tempSet.add(str+"12");            
18         }
19 
20     }

执行报错

分析原因:

虽然没有明显的修改和增加set,但是实际上已经增加。

tempMap2 从tempMap1中获取Set<String>   [5,50],此时是把tempMap2的key值引用指向了Set<String>集合。

故而 tempMap1 的key="5" 和tempMap2 的key="t" 指向了同一Set<String>集合

当17行改变tempmap2的时候,Set集合改变   tempMap1 key="5"的value引用不变 但对象值已改变。

解决方法:

tempMap2.put("t", new HashSet<String>(set));
用关键字new重新开辟一块内存空间,2个引用分别指向不同的位置,其中一个改变,另一个不受影响。

以上是关于Set<String> setStr=new HashSet<String>()的主要内容,如果未能解决你的问题,请参考以下文章

Redis常用指令

关于matlab gui中get set函数的问题???

Java 将 Map<String,Set<String>> 转换为 Map<String,Set<Object1>> [关闭]

快速将填充的 Set<String> 转换为 [String] [重复]

参数 'Set<Future<DocumentReference<Map<String, dynamic>>>> Function(String)' 不

为啥插入 set<vector<string>> 这么慢?