List

Java has provided generic support in List interface.

Syntax

List<T> list = new ArrayList<T>();

Where

  • list − object of List interface.
  • T − The generic type parameter passed during list declaration.

Description

The T is a type parameter passed to the generic interface List and its implemenation class ArrayList.

Learn Java in-depth with real-world projects through our Java certification course. Enroll and become a certified expert to boost your career.

Example

Create the following java program using any editor of your choice.

package com.tutorialspoint;

import java.util.ArrayList;
import java.util.Iterator;
import java.util.List;

public class GenericsTester {
   public static void main(String[] args) {

  List&lt;Integer&gt; integerList = new ArrayList&lt;Integer&gt;();
  integerList.add(Integer.valueOf(10));
  integerList.add(Integer.valueOf(11));
  List&lt;String&gt; stringList = new ArrayList&lt;String&gt;();
  stringList.add("Hello World");
  stringList.add("Hi World");
  System.out.printf("Integer Value :%d\n", integerList.get(0));
  System.out.printf("String Value :%s\n", stringList.get(0));
  for(Integer data: integerList) {
     System.out.printf("Integer Value :%d\n", data);
  }
  Iterator&lt;String&gt; stringIterator = stringList.iterator();
  while(stringIterator.hasNext()) {
     System.out.printf("String Value :%s\n", stringIterator.next());
  }
} }

This will produce the following result −

Output

Integer Value :10
String Value :Hello World
Integer Value :10
Integer Value :11
String Value :Hello World
String Value :Hi World

Comments

Leave a Reply

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