在Java 8中可以通过下面的方式获取Map对象的第一个元素:
1.获取元素键
//if order is important, e.g. with a TreeMap/LinkedHashMap
map.keySet().stream().findFirst();
//if order is not important or with unordered maps (HashMap...)
map.keySet().stream().findAny();
2.获取元素键值
//if order is important, e.g. with a TreeMap/LinkedHashMap
map.values().stream().findFirst();
//if order is not important or with unordered maps (HashMap...)
map.values().stream().findAny();
3.获取元素
//if order is important, e.g. with a TreeMap/LinkedHashMap
map.entrySet().stream().findFirst();
//if order is not important or with unordered maps (HashMap...)
map.entrySet().stream().findAny();
References
最新评论
本来在正常下载,突然就不能下载,并出现报错:a socket operation was attempted to an unreachable network。请问是什么原因呢
试了,还是不行,能不能更新一下
试了,确实不行,能不能更新一下
也推荐一下我自己写的 https://twitdown.com