阅读量:0
在Java中,Hashtable类是一种散列表实现,用于存储键值对。Hashtable类提供了以下几种遍历方法:
- 使用Iterator进行遍历:
Hashtable<String, Integer> hashtable = new Hashtable<>(); // 添加键值对 Iterator<Map.Entry<String, Integer>> iterator = hashtable.entrySet().iterator(); while (iterator.hasNext()) { Map.Entry<String, Integer> entry = iterator.next(); String key = entry.getKey(); Integer value = entry.getValue(); // 处理键值对 }
- 使用Enumeration进行遍历:
Hashtable<String, Integer> hashtable = new Hashtable<>(); // 添加键值对 Enumeration<Integer> enumeration = hashtable.elements(); while (enumeration.hasMoreElements()) { Integer value = enumeration.nextElement(); // 处理值 }
- 使用forEach方法进行遍历:
Hashtable<String, Integer> hashtable = new Hashtable<>(); // 添加键值对 hashtable.forEach((key, value) -> { // 处理键值对 });
这些是Hashtable类的几种常用遍历方法,开发人员可以根据实际需求选择适合的方法来遍历Hashtable中的键值对。