文章目录
说明
平时都会用到Map的遍历,索性一次总结一下,省的以后再查来查去了。
第一种方式:遍历Map的entry的方式
/**
* 第一种方式:遍历Map的entry的方式
*
* @param inputMap
*/
public static void fun1(Map<String, Object> inputMap) {
System.out.println(DateTest.getTimeNow() + "-----------fun1---开始------");
if (inputMap == null || inputMap.isEmpty()) {
return;
}
for (Map.Entry<String, Object> entry : inputMap.entrySet()) {
String key = entry.getKey();
Object value = entry.getValue();
System.out.println(DateTest.getTimeNow() + "[" + key + "]=" + (value == null ? null : value.toString()));
}
}
第二种方式:使用迭代器遍历Map的entry的方式
/**
* 第二种方式:使用迭代器遍历Map的entry的方式
*
* @param inputMap
*/
public static void fun2(Map<String, Object> inputMap) {
System.out.println(DateTest.getTimeNow() + "-----------fun2---开始------");
if (inputMap == null || inputMap.isEmpty()) {
return;
}
Iterator entrys = (Iterator) inputMap.entrySet().iterator();
while (entrys.hasNext()) {
Map.Entry<String, Object> entry = (Map.Entry) entrys.next();
String key = entry.getKey();
Object value = entry.getValue();
System.out.println(DateTest.getTimeNow() + "[" + key + "]=" + (value == null ? null : value.toString()));
}
}
第三种方式:遍历Map的key值的方式
/**
* 第三种方式:遍历Map的key值的方式
*
* @param inputMap
*/
public static void fun3(Map<String, Object> inputMap) {
System.out.println(DateTest.getTimeNow() + "-----------fun3---开始------");
if (inputMap == null || inputMap.isEmpty()) {
return;
}
Set<String> keys = inputMap.keySet();
for (String key : keys) {
Object value = inputMap.get(key);
System.out.println(DateTest.getTimeNow() + "[" + key + "]=" + (value == null ? null : value.toString()));
}
}
第四种方式:使用迭代器的遍历key方式
/**
* 第四种方式:使用迭代器的遍历key方式
*
* @param inputMap
*/
public static void fun4(Map<String, Object> inputMap) {
System.out.println(DateTest.getTimeNow() + "-----------fun4---开始------");
if (inputMap == null || inputMap.isEmpty()) {
return;
}
Iterator<String> keys = inputMap.keySet().iterator();
while (keys.hasNext()) {
String key = keys.next();
Object value = inputMap.get(key);
System.out.println(DateTest.getTimeNow() + "[" + key + "]=" + (inputMap.get(key) == null ? null : inputMap.get(key).toString()));
}
}
测试代码
测试代码:
public static void main(String[] args) {
Map<String, Object> inputMap = new HashMap<>();
inputMap.put("name", "张三");
inputMap.put("age", "28");
inputMap.put("gender", "男");
inputMap.put("hobby", "beautiful girl");
fun1(inputMap);
fun2(inputMap);
fun3(inputMap);
fun4(inputMap);
}
日志:
[2020-03-02 23:32:26.392] -----------fun1---开始------
[2020-03-02 23:32:26.394] [gender]=男
[2020-03-02 23:32:26.394] [name]=张三
[2020-03-02 23:32:26.395] [age]=28
[2020-03-02 23:32:26.396] [hobby]=beautiful girl
[2020-03-02 23:32:26.396] -----------fun2---开始------
[2020-03-02 23:32:26.396] [gender]=男
[2020-03-02 23:32:26.397] [name]=张三
[2020-03-02 23:32:26.397] [age]=28
[2020-03-02 23:32:26.397] [hobby]=beautiful girl
[2020-03-02 23:32:26.403] -----------fun3---开始------
[2020-03-02 23:32:26.404] [gender]=男
[2020-03-02 23:32:26.404] [name]=张三
[2020-03-02 23:32:26.406] [age]=28
[2020-03-02 23:32:26.407] [hobby]=beautiful girl
[2020-03-02 23:32:26.407] -----------fun4---开始------
[2020-03-02 23:32:26.409] [gender]=男
[2020-03-02 23:32:26.409] [name]=张三
[2020-03-02 23:32:26.410] [age]=28
[2020-03-02 23:32:26.410] [hobby]=beautiful girl
性能测试以及结果
以上几种方式都可以实现Map的遍历,但是哪一种的效率高呢?简单测试一下,以事实说话。
测试代码如下:
public static void main(String[] args) {
Map<String, Object> inputMap = new HashMap<>();
inputMap.put("name", "张三");
inputMap.put("age", "28");
inputMap.put("gender", "男");
inputMap.put("hobby", "beautiful girl");
// fun1(inputMap);
// fun2(inputMap);
// fun3(inputMap);
// fun4(inputMap);
int loopTimes = 1000000;
long start1 = System.currentTimeMillis();
for (int i = 0; i < loopTimes; i++) {
fun1(inputMap);
}
System.out.println(DateTest.getTimeNow() + "fun1耗时:" + (System.currentTimeMillis()-start1) + "ms");
long start2 = System.currentTimeMillis();
for (int i = 0; i < loopTimes; i++) {
fun2(inputMap);
}
System.out.println(DateTest.getTimeNow() + "fun2耗时:" + (System.currentTimeMillis()-start2) + "ms");
long start3 = System.currentTimeMillis();
for (int i = 0; i < loopTimes; i++) {
fun3(inputMap);
}
System.out.println(DateTest.getTimeNow() + "fun3耗时:" + (System.currentTimeMillis()-start3) + "ms");
long start4 = System.currentTimeMillis();
for (int i = 0; i < loopTimes; i++) {
fun4(inputMap);
}
System.out.println(DateTest.getTimeNow() + "fun4耗时:" + (System.currentTimeMillis()-start4) + "ms");
}
}
测试结果:
[2020-03-03 00:06:48.909] fun1耗时:208ms
[2020-03-03 00:06:48.997] fun2耗时:86ms
[2020-03-03 00:06:49.263] fun3耗时:266ms
[2020-03-03 00:06:49.446] fun4耗时:183ms
版权声明:本文内容由互联网用户自发贡献,该文观点仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 举报,一经查实,本站将立刻删除。
文章由极客之音整理,本文链接:https://www.bmabk.com/index.php/post/72730.html