• hashmap使用


    hashmap作为dao对象存储数据库数据

    list是把每一个数据库的字段都映射了,而hashmap则是唯一id:数据库字段作为key

    hashmap遍历方式

    
    public class Main {
    
        //使用迭代器(Iterator)EntrySet
            public static void main(String[] args) {
                // 创建并赋值 HashMap
                Map<Integer, String> map = new HashMap();
                map.put(1, "Java");
                map.put(2, "JDK");
                map.put(3, "Spring Framework");
                map.put(4, "MyBatis framework");
                map.put(5, "Java");
                // 遍历
                Iterator<Map.Entry<Integer, String>> iterator = map.entrySet().iterator();
                while (iterator.hasNext()) {
                    Map.Entry<Integer, String> entry = iterator.next();
                    System.out.println(entry.getKey());
                    System.out.println(entry.getValue());
                }
            }
    
        //ForEach EntrySet
        @Test
        public void test1(){
            // 创建并赋值 HashMap
            Map<Integer, String> map = new HashMap();
            map.put(1, "Java");
            map.put(2, "JDK");
            map.put(3, "Spring Framework");
            map.put(4, "MyBatis framework");
            map.put(5, "Java");
            // 遍历
            for (Map.Entry<Integer, String> entry : map.entrySet()) {
                System.out.print(entry.getKey());
                System.out.print(entry.getValue());
            }
        }
    
        //ForEach KeySet
        @Test
        public void test2(){
            // 创建并赋值 HashMap
            Map<Integer, String> map = new HashMap();
            map.put(1, "Java");
            map.put(2, "JDK");
            map.put(3, "Spring Framework");
            map.put(4, "MyBatis framework");
            map.put(5, "Java");
            // 遍历
            for (Integer key : map.keySet()) {
                System.out.print(key);
                System.out.print(map.get(key));
            }
        }
    
        //Lambda
        @Test
        public void test3(){
            // 创建并赋值 HashMap
            Map<Integer, String> map = new HashMap();
            map.put(1, "Java");
            map.put(2, "JDK");
            map.put(3, "Spring Framework");
            map.put(4, "MyBatis framework");
            map.put(5, "Java中文社群");
            // 遍历
            map.forEach((key, value) -> {
                System.out.print(key);
                System.out.print(value);
            });
        }
    
        //Streams API 单线程
        @Test
        public void test4(){
            // 创建并赋值 HashMap
            Map<Integer, String> map = new HashMap();
            map.put(1, "Java");
            map.put(2, "JDK");
            map.put(3, "Spring Framework");
            map.put(4, "MyBatis framework");
            map.put(5, "Java中文社群");
            // 遍历
            map.entrySet().parallelStream().forEach((entry) -> {
                System.out.print(entry.getKey());
                System.out.print(entry.getValue());
            });
        }
    }
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13
    • 14
    • 15
    • 16
    • 17
    • 18
    • 19
    • 20
    • 21
    • 22
    • 23
    • 24
    • 25
    • 26
    • 27
    • 28
    • 29
    • 30
    • 31
    • 32
    • 33
    • 34
    • 35
    • 36
    • 37
    • 38
    • 39
    • 40
    • 41
    • 42
    • 43
    • 44
    • 45
    • 46
    • 47
    • 48
    • 49
    • 50
    • 51
    • 52
    • 53
    • 54
    • 55
    • 56
    • 57
    • 58
    • 59
    • 60
    • 61
    • 62
    • 63
    • 64
    • 65
    • 66
    • 67
    • 68
    • 69
    • 70
    • 71
    • 72
    • 73
    • 74
    • 75
    • 76
    • 77
    • 78
    • 79
    • 80
    • 81
    • 82
    • 83
    • 84
    • 85
    • 86
    • 87
    • 88
    • 89
  • 相关阅读:
    小米6安装Ubuntu Touch系统也不是很难嘛
    NLP之TextRNN(预测下一个单词)
    终章-天花板
    java部分常见错误示例
    C++纯虚函数和抽象类 & 制作饮品案例(涉及知识点:继承,多态,实例化继承抽象类的子类,多文件实现项目)
    服务注册发现_解读Eureka注册中心UI界面
    N-128基于springboot,vue酒店管理系统
    算法-模拟
    上周热点回顾(3.27-4.2)
    【Linux问题】This account is currently not available.
  • 原文地址:https://blog.csdn.net/dabaoai123123/article/details/132919968