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

Very simple question, I think. How do I initialise an ArrayList called time.

Thanks.

share|improve this question
2  
use javadocs for such questions.duckduckgo.com/?q=!java+arraylist – zengr Nov 18 '10 at 9:20
duckduckgo funny domain – Rakesh Juyal Nov 18 '10 at 9:30

5 Answers

up vote 6 down vote accepted

This depends on what you mean by initialize. To simply initialize the variable time with the value of a reference to a new ArrayList, you do

ArrayList<String> time = new ArrayList<String>();

(replace String with the type of the objects you want to store in the list.)

If you want to put stuff in the list, you could do

ArrayList<String> time = new ArrayList<String>();
time.add("hello");
time.add("there");
time.add("world");

You could also do

ArrayList<String> time = new ArrayList<String>(
    Arrays.asList("hello", "there", "world"));

or by using an instance initializer

ArrayList<String> time = new ArrayList<String>() {{
    add("hello");
    add("there");
    add("world");
}};
share|improve this answer
ArrayList<String> time = new ArrayList<String>(); ? Why not List<String> time = new ArrayList<String>(); ? (Variables should point to interfaces whenever possible) – Sean Patrick Floyd Nov 18 '10 at 10:09
1  
But how should I tell if this is possible in the OP's scenario? (Perhaps he has time.ensureCapacity(1000) right below.) Why complicate things for such a beginner question? – aioobe Nov 18 '10 at 10:13

Arrays.asList allows you to build a List from a list of values.

You can then build your ArrayList by passing it the read-only list generated by Arrays.asList.

ArrayList time = new ArrayList(Arrays.asList("a", "b", "c"));

But if all you need is a List declared inline, just go with Arrays.asList alone.

List time = Arrays.asList("a", "b", "c");
share|improve this answer
Before the constructor, I define attributes like private int day; private double hours; – Luke Nov 18 '10 at 9:33
ArrayList<String> time = ArrayList.class.newInstance();
share|improve this answer
2  
Don't write code like this. Don't recommend other people write code like this. It is significantly slower than new ... and you have to deal with 2 checked exceptions. (And since your code doesn't deal with the exceptions, it is technically wrong as well.) – Stephen C Nov 18 '10 at 9:58

< 1.5 jdk

List time = new ArrayList();

gt or eq 1.5 jdk

List<T> time = new ArrayList<T>();
share|improve this answer
1  
This is java 1.4 code. Please use List<String> time = new ArrayList<String>(); instead – Sean Patrick Floyd Nov 18 '10 at 10:10

Alternative:

Using Google Collections, you could write:

import com.google.collect.Lists.*;

List<String> time = newArrayList();

You could even specify the initial contents of List as follows:

List<String> time = newArrayList("a", "b", "c");
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.