Iterable和Iterator的区别
首先Iterable是java.lang包中的,它的三个接口方法是
forEach(Consumer< ? super T> action) 、iterator() 、spliterator()
很多类都继承了Iterable,这样就可以调用他们的方法。
Iterator是java.util包中的,它的四个接口方法是
forEachRemaining(Consumer< ? super E> action) 、hasNext() 、next() 、remove()
一般都是配合使用,例如
System.out.println("通过Map.keySet遍历key和value:");
for (String key : map.keySet()) {
System.out.println("key= "+ key + " and value= " + map.get(key));
}
System.out.println("通过Map.entrySet使用iterator遍历key和value:");
Iterator<Map.Entry<String, String>> it = map.entrySet().iterator();
while (it.hasNext()) {
Map.Entry<String, String> entry = it.next();
System.out.println("key= " + entry.getKey() + " and value= " + entry.getValue());
}
System.out.println("通过Map.entrySet遍历key和value");
for (Map.Entry<String, String> entry : map.entrySet()) {
System.out.println("key= " + entry.getKey() + " and value= " + entry.getValue());
}
在这里Map.Entry是Map里的内部接口,封装了getKey(),getValue()等方法。
HashMap存放进去的顺序和取出来时候的顺序是不一致的,想要顺序一致的话可以用LinkedHashMap
放入HashSet中的数据结构一般要实现equals和hashcode方法