HashMap的getOrDefault()方法
【摘要】
HashMap的getOrDefault()方法
/**
* Created by 谭健 2017/8/24. 21:42.
* All Rights Reserved
...
HashMap的getOrDefault()方法
/**
* Created by 谭健 2017/8/24. 21:42.
* All Rights Reserved
*/
public static void main(String[] args) {
HashMap<String, Object> hashMap = new HashMap<>();
hashMap.putIfAbsent("orderId", "20170824222735412201");
hashMap.putIfAbsent("userId","1012758623");
hashMap.putIfAbsent("mobilePhone", "15197447018");
hashMap.getOrDefault("orderId", "19700000000000000000");
hashMap.getOrDefault("userId", "1000000000");
hashMap.getOrDefault("mobilePhone", "10000000000");
// old
if (hashMap.containsKey("orderId")) {
String orderId = (String) hashMap.get("orderId");
if (null == orderId || "".equals(orderId)) {
orderId = "19700000000000000000";
}
}
}
- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9
- 10
- 11
- 12
- 13
- 14
- 15
- 16
- 17
- 18
- 19
- 20
- 相较于原来的写法,新的getOrDefault()方法提供一个快捷的方式获取Map中的值
- 他的代码量更少,并且更具有可读性
- 应该推荐getOrDefault()这种写法,他为我们提供了一个更加可靠的代码体验
文章来源: wretchant.blog.csdn.net,作者:简简单单OnlineZuozuo,版权归原作者所有,如需转载,请联系作者。
原文链接:wretchant.blog.csdn.net/article/details/77543043
【版权声明】本文为华为云社区用户转载文章,如果您发现本社区中有涉嫌抄袭的内容,欢迎发送邮件进行举报,并提供相关证据,一经查实,本社区将立刻删除涉嫌侵权内容,举报邮箱:
cloudbbs@huaweicloud.com
- 点赞
- 收藏
- 关注作者
评论(0)