我想知道是否有办法检查迭代器对象.这是一种地图吗?
另外,有没有更好的方法来获取迭代器对象的内容并将它们放在mapC中?
这是我的代码:
import java.util.HashMap; import java.util.TreeMap; import java.util.Map; import java.util.Iterator; public class Maps { public static void main(String[] args) { Map mapA = new HashMap(); Map mapB = new TreeMap(); mapA.put("key1", "element 1"); mapA.put("key2", "element 2"); mapA.put("key3", "element 3"); // The three put() calls maps a string value to a string key. You can then // obtain the value using the key. To do that you use the get() method like this: String element1 = (String) mapA.get("key1"); // why do I need the type cast on the right? System.out.println(element1); // Lets iterate through the keys of this map: Iterator iterator = mapA.keySet().iterator(); System.out.println(iterator); // How to inspect this? Is it a kind of map? Map mapC = new HashMap(); while(iterator.hasNext()){ Object key = iterator.next(); Object value = mapA.get(key); mapC.put(key,value); } // Is there a better way to take the contents of the iterator and put them in a new map? System.out.println(mapC); } }
Louis Wasser.. 6
你可以用一个迭代器唯一要做的是调用它hasNext()
,next()
和remove()
方法.每种不同类型的集合(和集合视图)的迭代器实现在每种情况下都可能不同; 你无能为力.
如其他地方所述,您可以使用mapC.putAll(mapA)
复制来自的所有内容mapA
.但是,您通常应该使用泛型而不是原始类型.
你可以用一个迭代器唯一要做的是调用它hasNext()
,next()
和remove()
方法.每种不同类型的集合(和集合视图)的迭代器实现在每种情况下都可能不同; 你无能为力.
如其他地方所述,您可以使用mapC.putAll(mapA)
复制来自的所有内容mapA
.但是,您通常应该使用泛型而不是原始类型.