Get Set view of Keys from Java TreeMap example

  1. /*
  2.   Get Set view of Keys from Java TreeMap example
  3.   This Java Example shows how to get a Set of keys contained in TreeMap
  4.   using keySet method of Java TreeMap class.
  5. */
  6.  
  7. import java.util.Iterator;
  8. import java.util.TreeMap;
  9. import java.util.Set;
  10.  
  11. public class GetSetViewOfKeysFromTreeMapExample {
  12.  
  13. public static void main(String[] args) {
  14.  
  15. //create TreeMap object
  16. TreeMap treeMap = new TreeMap();
  17.  
  18. //add key value pairs to TreeMap
  19. treeMap.put("1","One");
  20. treeMap.put("3","Three");
  21. treeMap.put("2","Two");
  22.  
  23. /*
  24.   get Set of keys contained in TreeMap using
  25.   Set keySet() method of TreeMap class
  26.   */
  27.  
  28. Set st = treeMap.keySet();
  29.  
  30. System.out.println("Set created from TreeMap Keys contains :");
  31.  
  32. /*
  33.   Iterate through the Set of keys.
  34.   Please note that Set's iterator will return the keys in ascending order.
  35.   */
  36. Iterator itr = st.iterator();
  37. while(itr.hasNext())
  38. System.out.println(itr.next());
  39.  
  40. /*
  41.   Please note that resultant Set object is backed by the TreeMap.
  42.   Any key that is removed from Set will also be removed from
  43.   original TreeMap object. The same is not the case with the element
  44.   addition.
  45.   */
  46.  
  47. //remove 1 from Set
  48. st.remove("1");
  49.  
  50. //check if original TreeMap still contains 2
  51. boolean blnExists = treeMap.containsKey("1");
  52. System.out.println("Does TreeMap contain 1 ? " + blnExists);
  53. }
  54. }
  55.  
  56. /*
  57. Output would be
  58. Set created from TreeMap Keys contains :
  59. 1
  60. 2
  61. 3
  62. Does TreeMap contain 1 ? false
  63. */

Visit Java Example Forums to request Java examples or ask Java questions!
OR
Try out our new Java Search Engine




Suggested Reading

Oracle Magazine
Contains technology strategy articles, sample code, tips, Oracle and partner news, how to articles for developers and DBAs, and more.
Cost: FREE

View/Subscribe
NASA Tech Briefs
Features exclusive reports of innovations developed by NASA and its industry partners/contractors that can be applied to develop new/improved products and solve engineering or manufacturing problems.
Cost: FREE

View/Subscribe
FierceBiotech IT
Is a free, easy to read weekly email service that brings must read biotech IT news to senior biotech, pharma, and IT executives.
Cost: FREE

View/Subscribe
Simply SQL
Simply SQL is a practical step-by-step guide to writing SQL.
Cost: FREE

View/Subscribe
Simply JavaScript
Packed with full-color examples, Simply JavaScript is all you need to start programming in JavaScript the right way.
Cost: FREE

View/Subscribe
PCMag.com's What's New Now
Lance Ulanoff, Editor in Chief of the PC Magazine Network, brings you this twice-weekly roundup of the latest top tech stories, the best new product reviews, plus special offers from Ziff Davis and its partners.
Cost: FREE

View/Subscribe

Could not find what you are looking for? Search Java Examples




Feel Tired? Read Jokes & Inspirational Stories, Play Games!