map遍历时,使用key找value的好处是遍历速度最快
Map hashMap = new HashMap<>(); for (Integer key : hashMap.keySet()) { String value = hashMap.get(key); Log.i(TAG, "key: " + key +"value: "+value); }
Posted 林被熊烟岛
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了关于map的小事相关的知识,希望对你有一定的参考价值。
Map hashMap = new HashMap<>(); for (Integer key : hashMap.keySet()) { String value = hashMap.get(key); Log.i(TAG, "key: " + key +"value: "+value); }
以上是关于关于map的小事的主要内容,如果未能解决你的问题,请参考以下文章