JavaでMapコレクションの値を取得する方法

JavaでMapコレクションを反復処理して値を取得するにはさまざまな方法があります。以下に一般的な方法をいくつか示します。

  1. Mapのキーのセットを使って反復処理する:
Map<String, Integer> map = new HashMap<>();
map.put("a", 1);
map.put("b", 2);
map.put("c", 3);

for (String key : map.keySet()) {
    Integer value = map.get(key);
    System.out.println("Key: " + key + ", Value: " + value);
}
  1. MapのentrySetメソッドを用いて反復処理する:
Map<String, Integer> map = new HashMap<>();
map.put("a", 1);
map.put("b", 2);
map.put("c", 3);

for (Map.Entry<String, Integer> entry : map.entrySet()) {
    String key = entry.getKey();
    Integer value = entry.getValue();
    System.out.println("Key: " + key + ", Value: " + value);
}
  1. Java 8のStream APIを使ったイテレーション:
Map<String, Integer> map = new HashMap<>();
map.put("a", 1);
map.put("b", 2);
map.put("c", 3);

map.forEach((key, value) -> System.out.println("Key: " + key + ", Value: " + value));

これらの方法を使用して、具体的なニーズに基づいて適切な方法を選択し、走査と値の取得を行います。

bannerAds