List
List is an ordered collection in which duplicates are permitted. In this program the list is implemented.
import java.util.*;
public class List
{
public static void main(String args[])
{
List l = new ArrayList();
l.add("one");
l.add("second");
l.add(new Integer(4);
l.add("second");
System.out.println(l);
}
}
Download Program


