Java: Collections API & Maps - Intro

PHOTO EMBED

Thu Oct 13 2022 21:10:43 GMT+0000 (Coordinated Universal Time)

Saved by @testpro #java

package snippets.collecectionApis;

import java.util.HashMap;

public class Maps {

  public static void main(String[] args) {

    // {key:value, key2:value2 ...}

    // France: Paris
    // Italy: Rome
    // Norway: Oslo
    // US: Washington DC

    HashMap<String, String> countryCapitals = new HashMap<>();
    countryCapitals.put("France","Paris");
    countryCapitals.put("Italy", "Rome");
    countryCapitals.put("Norway", "Oslo");
    countryCapitals.put("US", "Washington DC");

    System.out.println( countryCapitals.get("Italy"));
  }
}
content_copyCOPY