Map
Posted sunzhongyu008
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Map相关的知识,希望对你有一定的参考价值。
1.如果Map中没有重复的key,则会返回null,否则返回原始数据
package com.iterator.demo; import java.util.HashMap; import java.util.Map; public class IteratorDemo public static void main(String[] args) Map<String, Integer> map = new HashMap<String, Integer>(); map.put("", 1); map.put("two", 2); map.put(null, 3); System.out.println(map.put("two", 4));//key重复 System.out.println(map.put("five", 5));
运行结果:
2
null
以上是关于Map的主要内容,如果未能解决你的问题,请参考以下文章
Kotlin集合操作 ⑤ ( Map 集合 | 获取 Map 值 | Map 遍历 | 可变 Map 集合 )