Java-Map集合

基本使用


public class Demomap {
    public static void main(String[] args) {
        Map<String,Integer> maps = new HashMap<>();//无序
//        Map<String,Integer> maps = new LinkedHashMap<>();有序
        maps.put("a",1);
        maps.put("b",2);
        maps.put("c",3);
        maps.put(null,null);
        System.out.println(maps);
    }
}

常用api

public class Demomap {
    public static void main(String[] args) {
        Map<String,Integer> maps = new HashMap<>();
        Map<String,Integer> maps1 = new HashMap<>();
        maps.put("a",1);
        maps.put("b",2);
        maps.put("c",3);
        maps1.put("d",1);
        maps1.put("f",2);
        maps1.put("g",3);
        System.out.println(maps);
//        maps.clear();
        maps.remove("a");// 根据key删除
        System.out.println(maps.get("b")); //根据key取值
        Set<String> keySets = maps.keySet();// 取出所有的key
        System.out.println(keySets);
        Collection<Integer>  values = maps.values(); //取出所有的value
        System.out.println(values);
        System.out.println(maps.containsKey("b"));
        System.out.println(maps.containsValue(1));
        maps.putAll(maps1); //maps1所有元素添加到mpas
        System.out.println(maps);
        System.out.println(maps.size());
        System.out.println(maps.isEmpty());
    }
}

遍历


public class Demomap1 {
    public static void main(String[] args) {
        Map<String,Integer> map = new HashMap<>();
        map.put("a",1);
        map.put("b",2);
        map.put("c",3);
//        遍历方式一,通过key取值
        Set<String> mapkey = map.keySet();
        for (String key : mapkey) {
            System.out.println(map.get(key));
        }

//        遍历方式二
        Set<Map.Entry<String, Integer>> entries = map.entrySet();
        for (Map.Entry<String, Integer> entrie : entries){
            System.out.println("key:" + entrie.getKey());
            System.out.println("value:" + entrie.getValue());
        }

//       遍历方式三
        map.forEach(new BiConsumer<String, Integer>() {
            @Override
            public void accept(String key, Integer value) {
                System.out.println("这是key"+key);
                System.out.println("这是value"+value);
            }
        });
//      遍历方式三,简写
        map.forEach((key,value)-> {
            System.out.println("这是key"+key);
            System.out.println("value"+value);
        });
    }
}

排序

//只能针对key进行排序
import java.util.HashMap;
import java.util.Map;
import java.util.Objects;
import java.util.TreeMap;

public class Treesort {
    public static void main(String[] args) {
       //自定义排序 
        Map<Student,Integer> maps = new TreeMap<>((o1,o2)->o2.getHeight() - o1.getHeight());
        maps.put(new Student(1),1);
        maps.put(new Student(2),1);
        maps.put(new Student(3),1);
        System.out.println(maps);
    }
}


class Student{
    private int height;

    public Student(int height) {
        this.height = height;
    }

    public int getHeight() {
        return height;
    }

    public void setHeight(int height) {
        this.height = height;
    }

    @Override
    public boolean equals(Object o) {
        if (this == o) return true;
        if (o == null || getClass() != o.getClass()) return false;
        Student student = (Student) o;
        return height == student.height;
    }

    @Override
    public int hashCode() {
        return Objects.hash(height);
    }

    @Override
    public String toString() {
        return "Student{" +
                "height=" + height +
                '}';
    }
}

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

郑*杰

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值