首页 java基础 (可运行)map的循环遍历方式,map的获取值的办法

(可运行)map的循环遍历方式,map的获取值的办法

map的循环遍历方式 package com.sec.map; import java.util.HashMap; im…

map的循环遍历方式

package com.sec.map;

import java.util.HashMap;
import java.util.Iterator;
import java.util.Map;

public class TestMap {

    public static void main(String[] args) {


          Map<String, String> map = new HashMap<String, String>();

          map.put("1", "value1");

          map.put("2", "value2");

          map.put("3", "value3");


          //第一种:普遍使用,二次取值

          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("www.javaweb.top");

          //第二种

          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("www.javaweb.top");

          //第三种:推荐,尤其是容量大时

          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());

          }

          System.out.println("www.javaweb.top");

          //第四种

          System.out.println("通过Map.values()遍历所有的value,但不能遍历key");

          for (String v : map.values()) {

           System.out.println("value= " + v);

          }

          System.out.println("www.javaweb.top");
         }

}

 

免责声明:文章内容不代表本站立场,本站不对其内容的真实性、完整性、准确性给予任何担保、暗示和承诺,仅供读者参考,文章版权归原作者所有。如本文内容影响到您的合法权益(内容、图片等),请及时联系本站,我们会及时删除处理。

为您推荐

26个大小写字母对应的哈希值

26个大小写字母对应的哈希值

大写字母: 小写字母 A 对应的哈希值:65 B 对应的哈希值:66 C 对应的哈希值:67 D 对应的哈希值:68 E...
linux 把文件名字写入到txt

linux 把文件名字写入到txt

1、首先连接上linux主机,进入到需要处理的目录,例如“/”目录。   2、输入:ls -1 > 1....
git 流程开发

git 流程开发

前提条件:不能在 master 分支上修改任何文件。master 分支的变更只能通过 git pull 和 git me...
使用Git将本地文件提交到远程仓库

使用Git将本地文件提交到远程仓库

使用Git将本地文件提交到远程仓库 使用Git将本地文件提交到远程仓库 现在要将本地代码推到git远程仓库保存,可以提交...
将博客搬至CSDN

将博客搬至CSDN

将博客搬至CSDN
返回顶部