zoukankan      html  css  js  c++  java
  • 【Java】 遍历HashMap

    1.遍历键值对

      使用map.entrySet(),注意foreach语句中的类型为Map.Entry<K, V>

    2.遍历Key

      使用map.keySet()

    3.遍历Value

      使用map.values()

    	public static void main(String[] args) {
    		HashMap<String, Integer> map = new HashMap<String, Integer>();
    		map.put("一", 1);
    		map.put("二", 2);
    		map.put("三", 3);
    		
    		// 1.遍历键值对,使用Map.Entry,map.entrySet()
    		System.out.println("=====遍历键值对=====");
    		for (Map.Entry<String, Integer> i : map.entrySet()) {
    
    			System.out.print("Key:" + i.getKey() + "	");
    			System.out.println("Value:" + i.getValue());
    		}
    
    		// 2.遍历Key,使用map.keySet()
    		System.out.println("=====遍历Key=====");
    		for (String i : map.keySet()) {
    			System.out.println("Key:" + i);
    		}
    		
    		// 3.遍历Value,使用map.entrySet
    		System.out.println("=====遍历Value=====");
    		for (int i : map.values()) {
    			System.out.println("Value:" + i);
    		}		
    	}
    

      

    =====遍历键值对=====
    Key:一    Value:1
    Key:三    Value:3
    Key:二    Value:2
    =====遍历Key=====
    Key:一
    Key:三
    Key:二
    =====遍历Value=====
    Value:1
    Value:3
    Value:2
  • 相关阅读:
    mysq 中 information_schema 库
    python mysql创建表
    Mysql 连接池
    mysql 事务、游标
    python 操作数据库1--连接、执行sql语句
    搭建自动化脚本运行环境
    快速定位XPATH
    Fiddler--Filters
    Fiddler--Composer
    Fiddler--AutoResponder
  • 原文地址:https://www.cnblogs.com/yongh/p/10009440.html
Copyright © 2011-2022 走看看