当前位置:  开发笔记 > 编程语言 > 正文

Java迭代器.如何检查迭代器?

如何解决《Java迭代器.如何检查迭代器?》经验,为你挑选了1个好方法。

我想知道是否有办法检查迭代器对象.这是一种地图吗?

另外,有没有更好的方法来获取迭代器对象的内容并将它们放在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.但是,您通常应该使用泛型而不是原始类型.



1> Louis Wasser..:

你可以用一个迭代器唯一要做的是调用它hasNext(),next()remove()方法.每种不同类型的集合(和集合视图)的迭代器实现在每种情况下都可能不同; 你无能为力.

如其他地方所述,您可以使用mapC.putAll(mapA)复制来自的所有内容mapA.但是,您通常应该使用泛型而不是原始类型.

推荐阅读
wurtjq
这个屌丝很懒,什么也没留下!
DevBox开发工具箱 | 专业的在线开发工具网站    京公网安备 11010802040832号  |  京ICP备19059560号-6
Copyright © 1998 - 2020 DevBox.CN. All Rights Reserved devBox.cn 开发工具箱 版权所有