1. Collection vs Collections
First of all, “Collection” and “Collections” are two different concepts. As you will see from the hierarchy diagram below, “Collection” is a root interface in the Collection hierarchy but “Collections” is a class which provide static methods to manipulate on some Collection types.
2. Class hierarchy of Collection
The following diagram demonstrates class hierarchy of Collection.
3. Class hierarchy of Map
Here is class hierarchy of Map.
4. Summary of classes
5. Code Example
The following is a simple example to illustrate some collection types:
List<String> a1 = new ArrayList<String>(); a1.add("Program"); a1.add("Creek"); a1.add("Java"); a1.add("Java"); System.out.println("ArrayList Elements"); System.out.print("\t" + a1 + "\n"); List<String> l1 = new LinkedList<String>(); l1.add("Program"); l1.add("Creek"); l1.add("Java"); l1.add("Java"); System.out.println("LinkedList Elements"); System.out.print("\t" + l1 + "\n"); Set<String> s1 = new HashSet<String>(); // or new TreeSet() will order the elements; s1.add("Program"); s1.add("Creek"); s1.add("Java"); s1.add("Java"); s1.add("tutorial"); System.out.println("Set Elements"); System.out.print("\t" + s1 + "\n"); Map<String, String> m1 = new HashMap<String, String>(); // or new TreeMap() will order based on keys m1.put("Windows", "2000"); m1.put("Windows", "XP"); m1.put("Language", "Java"); m1.put("Website", "programcreek.com"); System.out.println("Map Elements"); System.out.print("\t" + m1); |
Output:
ArrayList Elements [Program, Creek, Java, Java] LinkedList Elements [Program, Creek, Java, Java] Set Elements [tutorial, Creek, Program, Java] Map Elements {Windows=XP, Website=programcreek.com, Language=Java}
this is very helpful blog about java
It is help full
Ensure the safety of your home by scheduling professional Dryer Vent Cleaning in Nova Scotia to prevent potential fire hazards and improve appliance efficiency.
When seeking legal assistance in Karachi, Pakistan, look no further than the esteemed Lawyers in Karachi Pakistan Renowned for their expertise and dedication, these legal professionals offer a comprehensive range of services to address your legal needs effectively. Whether you require representation in civil matters, guidance on corporate law issues, or advocacy in criminal cases, lawyers in Karachi, Pakistan, stand ready to provide personalized support tailored to your specific situation.
With Fence Painting Calgary every brushstroke is a testament to their passion for elevating aesthetics and preserving the integrity of properties across the city.
Choosing the Best Gutter Cleaning Service in Titusville, Florida involves considering reputation, customer reviews, and the range of services offered. Whether you need a one-time cleaning or regular maintenance, the top-rated companies listed above are equipped to provide exceptional service
Discover the benefits of using Reusable Period Product in Brampton, ON These eco-friendly alternatives to disposable menstrual products offer a sustainable and cost-effective solution for managing your menstrual cycle. Made from high-quality materials, reusable period products are designed to provide comfort, reliability, and long-term savings. Whether you prefer menstrual cups, cloth pads, or period underwear, Brampton offers a variety of options to meet your needs and support a greener lifestyle.
A Chain Link Fence is a versatile and practical fencing option commonly used in residential, commercial, and industrial settings. It consists of interlocking metal links, forming a durable and transparent barrier.
Each of our Belleville Used Cars undergoes a rigorous inspection process to ensure it meets our high standards for quality and reliability. We understand that peace of mind is essential when purchasing a pre-owned vehicle, which is why we go above and beyond to ensure that every car on our lot is in top condition.
CBD Vape Canada is a popular method of consuming CBD, a non-psychoactive compound found in cannabis plants. Vaping CBD involves using an electronic device, also known as a vape pen or vaporizer, to inhale CBD vapor. This method is preferred by many people due to its fast onset time and ease of use.
Moreover, Crop Spraying Drones in Auburn are equipped with sophisticated sensors and imaging technology.
A Mortgage Consultant in Menifee, CA plays a pivotal role in navigating the complex terrain of real estate financing.
This script Embossing Stamp is great for creating any text or graphics you want. It’s easy to use, just position the text or graphic and press down to emboss it.
https://www.desnainfotech.com/
http://aptronnoida.in/blog/why-java-is-more-secure-than-other-languages/
If I wanna add BST to the collection. where should it come?
u missed the abstractinterface,such as abstractcollection,abstractset,abstractlist,Those are important in the hierarchy of java collection.
It is very crisp and clear..
great explanation… very useful….
The graph is very clear~
You forget
interface NavigableMap
Clear explanation, great work!
Very good explanation with clear diagrams. Thanks.
Excellent illustration. Thanks a lot.
it is helpful