5910 Breckenridge Pkwy Suite B, Tampa, FL. 33610
(800) 272-0707

SkillSoft Explore Course

IT Professional Curricula     Software Development Solution Area     Java 2 Programming     Arrays and the Java Collection Framework
If you're writing Java code and need a container to store elements, a list is likely what you'll use. The Java collections framework provides several different list implementations. Use this course to practice using parameterized lists.

Start by working with parameterized collections with type parameters to indicate the type of data you want to store within that collection. Compare parameterized and non-parameterized lists. Then, explore first-hand the advantages of working with parameterized lists.

Next, investigate all the methods you can use to operate on lists in Java, examining the inheritance hierarchy of interfaces in the Java collections framework and the use case for each kind of interface.

When you're finished with this course, you'll be able to use parameterized lists to store your data and perform the correct operation based on your use case.

Objectives

Collections in Java: Lists & List Operations

  • discover the key concepts covered in this course
  • create and use parameterized lists by specifying type arguments
  • compare and contrast the usage of parameterized and non-parameterized lists
  • perform insertion, deletion, and other operations on lists
  • examine and invoke the methods available in the List interface
  • examine and invoke the methods available in the Iterable interface
  • summarize the key concepts covered in this course