Map techniques. : Map « Collections « Java Tutorial






import java.util.Collection;
import java.util.Map;
import java.util.Set;
import java.util.TreeMap;

public class Main {
  public static void main(String args[]) {
    Map<String, Integer> atomNums = new TreeMap<String, Integer>();

    atomNums.put("A", 1);
    atomNums.put("B", 2);
    atomNums.put("C", 3);
    atomNums.put("D", 4);
    atomNums.put("E", 5);
    atomNums.put("F", 6);

    System.out.println("The map contains these " + atomNums.size() + " entries:");

    Set<Map.Entry<String, Integer>> set = atomNums.entrySet();

    for (Map.Entry<String, Integer> me : set) {
      System.out.print(me.getKey() + ", Atomic Number: ");
      System.out.println(me.getValue());
    }
    TreeMap<String, Integer> atomNums2 = new TreeMap<String, Integer>();

    atomNums2.put("Q", 30);
    atomNums2.put("W", 82);

    atomNums.putAll(atomNums2);

    set = atomNums.entrySet();

    System.out.println("The map now contains these " + atomNums.size() + " entries:");
    for (Map.Entry<String, Integer> me : set) {
      System.out.print(me.getKey() + ", Atomic Number: ");
      System.out.println(me.getValue());
    }

    if (atomNums.containsKey("A"))
      System.out.println("A has an atomic number of " + atomNums.get("A"));

    if (atomNums.containsValue(82))
      System.out.println("The atomic number 82 is in the map.");
    System.out.println();

    if (atomNums.remove("A") != null)
      System.out.println("A has been removed.\n");
    else
      System.out.println("Entry not found.\n");

    Set<String> keys = atomNums.keySet();
    for (String str : keys)
      System.out.println(str + " ");

    Collection<Integer> vals = atomNums.values();
    for (Integer n : vals)
      System.out.println(n + " ");

    atomNums.clear();
    if (atomNums.isEmpty())
      System.out.println("The map is now empty.");
  }
}








9.25.Map
9.25.1.Creating and storing arrays in a map
9.25.2.Sort based on the values
9.25.3.Get a key from value with an HashMap
9.25.4.Retrieve environment variables (JDK1.5)
9.25.5.Creating a Type-Specific Map: creates a map whose keys are Integer objects and values are String objects.
9.25.6.A map declared to hold objects of a type T can also hold objects that extend from T
9.25.7.A value retrieved from a type-specific collection does not need to be casted
9.25.8.Map techniques.
9.25.9.Create an array containing the keys in a map
9.25.10.Create an array containing the values in a map
9.25.11.Creating a Hash Table
9.25.12.Creating a Map That Retains Order-of-Insertion
9.25.13.Automatically Removing an Unreferenced Element from a Hash Table
9.25.14.Creating a Type-Specific Map [5.0]
9.25.15.Create type specific collections
9.25.16.Convert Properties into Map