Import Treemap Java Code Example

Snippet 1

  import java.util.*;

// Declare the variable using the interface of the object for flexibility.
// Non-primative data types only.
Map mambo = new TreeMap();

mambo.put(key, value);
// TreeMap will be sorted by key.
// Work with any comparable object as a key.

mambo.put(1, "Monica");
mambo.put(2, "Erica");
mambo.put(3, "Rita"); 

Copyright © Code Fetcher 2020

 

 

Published

Leave a comment

Your email address will not be published. Required fields are marked *