Skip to content
KnowledgeCity

Java Lists

Discover how to utilize lists inside of Java.
Preview the first lesson free — get full access to all 4 lessons.
Course: On-Demand
Intermediate Provider Cliff Brozo  4 Lessons ·  20m  in Arabic, German, English, Spanish, French, Portuguese, Urdu, Chinese 

Course Description

In Java Lists, you will discover there are many types of lists available in Java and, in addition to the review of ArrayLists, we will talk about a Set List, which is a distinct unordered list of elements, and LinkedList which is very similar to an ArrayList which has a regular array inside it. LinkedList stores its items in "containers" with a link to the first container, and each container has a link to the next container in the list. Finally, we discuss HashMaps, where items are stored in "key/value" pairs, and HashSet, which is a collection of items where every item is unique.

What You'll Learn

  • Describe the different types of lists available in Java
  • Identify Set Lists as a distinct, unordered collection of elements
  • Use LinkedList and ArrayList to store and link items
  • Explain HashSet as a collection where every item is unique
  • Work with HashMaps that store items in key/value pairs

Key Takeaways

  • Java provides many types of lists, and the course reviews ArrayLists alongside other list types.
  • A Set List is a distinct, unordered list of elements.
  • LinkedList is similar to an ArrayList and stores its items in containers, with a link to the first container and each container linking to the next.
  • HashMaps store items in key/value pairs.
  • A HashSet is a collection of items in which every item is unique.

Frequently Asked Questions

What does the Java Lists course cover?

It covers the many types of lists available in Java, including a review of ArrayLists, Set Lists (a distinct unordered list of elements), LinkedList, HashMaps (items stored in key/value pairs), and HashSet (a collection where every item is unique).

What is the difference between a LinkedList and an ArrayList in this course?

The course explains that LinkedList is very similar to an ArrayList, which has a regular array inside it, while LinkedList stores its items in containers with a link to the first container and each container linking to the next container in the list.

What skills will I gain from this course?

The course covers skills including ArrayList, Generic Java, Java APIs, the Java Collections Framework, Java Data Objects, and Linked Lists.

What topics are taught in the lessons?

The lessons cover Sets, Lists, Hash Maps, and Set List Hash.