Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

We create a Set as

Set myset = new HashSet()

How do we create a List in Java?

share|improve this question
9  
Such simple question can be easily solved with a book or a quick Google query. Besides the fact, that the Javadoc of the JDK is good enough to answer that. – ReneS May 13 '09 at 15:47
79  
So what? SO is a resource for developers. This does NOT mean "only post questions here as a last resort". – Cuga May 13 '09 at 15:50
25  
ReneS: If you were so new to Java that you needed to ask, then it wouldn't be so easy to find out. – Tom Hawtin - tackline May 13 '09 at 16:12
44  
This question is one of the top google hits for "java create list" and it has a very helpful set of answers, so seems like a reasonable enough question to me :-) – JosephH Jan 26 '11 at 19:21
13  
It's a good question with good answers. One of the aims of Stack Overflow is to create some kind of canonical answer for programming questions, at least according to the founders of the site. So please try to avoid down-voting these kinds of posts in future, if you can resist the temptation. – eggonlegs Oct 11 '11 at 15:17
show 2 more comments

12 Answers

up vote 176 down vote accepted
List myList = new ArrayList();

or with generics

List<MyType> myList = new ArrayList<MyType>();
share|improve this answer
4  
Note that ArrayList is not the only kind of List -- and, regarding the question, HashSet is not the only kind of Set. – slim Feb 11 at 14:25

Additionally, if you want to create a list that has things in it:

List<String> messages = Arrays.asList("Hello", "World!", "How", "Are", "You");
share|improve this answer
3  
The caveat is that this type of list (the one returned by asList()) is immutable. – Avrom May 13 '09 at 17:38
14  
@Avron - wrong: it is only fixed size: you can not change the size, but you can change the content (caveat of the caveat?) – Carlos Heuberger May 13 '09 at 21:02

First read this, then read this and this. 9 times out of 10 you'll use one of those two implementations.

In fact, just read Sun's Guide to the Collections framework.

share|improve this answer
3  
I'd even add "8 times out of 10" you'll use ArrayList, just because it simply doesn't matter in 9.9 times out of 10. – Joachim Sauer May 13 '09 at 20:03
1  
LinkedList is semantically appropriate when you only really care about the ends. – Adam Jaskiewicz May 13 '09 at 21:53
LinkedLists are excellent if you just are going to iterate over them. To mee, it seems as if linked lists are more elegant, but maybe it's just because i learned lisp before Java. – KarlP May 14 '09 at 10:46
@Karlp Agreed. I would say it's about 50/50 most of the time between ArrayList and LinkedList, and the answer isn't always about the complexity of the operations; more often it's simply what feels right for the problem at hand. – Adam Jaskiewicz May 14 '09 at 14:32

List is just an interface just as Set.

Like HashSet is an implementation of a Set which has certain properties in regards to add / lookup / remove performance, ArrayList is the bare implementation of a List.

If you have a look at the documentation for the respective interfaces you will find "All Known Implementing Classes" and you can decide which one is more suitable for your needs.

Chances are that it's ArrayList.

share|improve this answer
//simple example creating a list form a string array

String[] myStrings = new String[] {"Elem1","Elem2","Elem3","Elem4","Elem5"};

List mylist = Arrays.asList(myStrings );

//getting an iterator object to browse list items

Iterator itr= mylist.iterator();

System.out.println("Displaying List Elements,");

while(itr.hasNext())

  System.out.println(itr.next());
share|improve this answer

Sometimes - but only very rarely - instead of a new ArrayList, you may want a new LinkedList. Start out with ArrayList and if you have performance problems and evidence that the list is the problem, and a lot of adding and deleting to that list - then - not before - switch to a LinkedList and see if things improve. But in the main, stick with ArrayList and all will be fine.

share|improve this answer

One example:

List somelist = new ArrayList();

You can look at the javadoc for List and find all known implementing classes of the List interface that are included with the java api.

share|improve this answer
List list = new ArrayList();
share|improve this answer

Using Google Collections, you could use the following methods in the Lists class

import com.google.common.collect.Lists;

// ...

List<String> strings = Lists.newArrayList();

List<Integer> integers = Lists.newLinkedList();

There are overloads for varargs initialization and initialising from an Iterable<T>.

The advantage of these methods is that you don't need to specify the generic parameter explicitly as you would with the constructor - the compiler will infer it from the type of the variable.

share|improve this answer

Since Java 7 you have type inference for generic instance creation, so now you can define the right hand side of the list assignment without having to repeat generic parameters:

List<String> list = new ArrayList<>();
list.add("foo");
String foo = list.get(0);

A fixed-size list can be initialized in the same way as in previous versions:

List<String> list = Arrays.asList("foo", "bar");
String foo = list.get(0);
share|improve this answer

There are many ways to create a Set and a List. HashSet and ArrayList are just two examples. It is also fairly common to use generics with collections these days. I suggest you have a look at what they are

This is a good introduction for java's builtin collections. http://java.sun.com/javase/6/docs/technotes/guides/collections/overview.html

share|improve this answer
List<Object> nameOfList = new ArrayList<Object>();

You need to import List and ArrayList.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.