Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
Java 5 以降で java.util.Map のすべてのキーと値のペアを反復処理する最も簡単な方法は何ですか?
KがあなたのキータイプでVあり、あなたの値タイプであると仮定します:
K
V
for (Map.Entry<K,V> entry : map.entrySet()) { K key = entry.getKey(); V value = entry.getValue(); // do stuff }