In practice, is it better to return an empty list like this:

public class Configuration
{
    private List<Foo> fooList;

    // do stuff
    public List<Foo> getFooList()
    {
        if(fooList == null)
        {
            fooList = Collections.emptyList();
        }

        return fooList;
    }
}

Or like this:

public class Configuration
{
    private List<Foo> fooList;

    // do stuff
    public List<Foo> getFooList()
    {
        if(fooList == null)
        {
            fooList = new ArrayList<Foo>();
        }

        return fooList;
    }
}

Or is this completely dependent upon what you're going to do with the returned list?

link|improve this question

@all: Thanks for all the insightful responses! – mre Apr 5 '11 at 13:20
feedback

5 Answers

up vote 18 down vote accepted

The main difference is that Collections.emptyList() returns an immutable list, i.e., a list to which you cannot add or remove elements.

In the rare cases in which you do want to modify the returned list, this would thus not be an option.

I'd say that returning an immutable list is perfectly fine (and even the preferred way) as long as the contract (documentation) does not explicitly state differently.


The implementation of emptyList looks as follows:

public static final <T> List<T> emptyList() {
    return (List<T>) EMPTY_LIST;
}

so if your method (which returns an empty list) is called very often, this approach may even give you slightly better performance.

link|improve this answer
1  
So, would Collections.emptyList() be more suitable for let's say, error checking and the like? – mre Apr 5 '11 at 13:05
Yes, I would say so. – aioobe Apr 5 '11 at 13:07
feedback

Collections.emptyList is immutable so there is a difference between the two versions so you have to consider users of the returned value.

Returning new ArrayList<Foo> always creates a new instance of the object so it has a very slight extra cost associated with it which may give you a reason to use Collections.emptyList. I like using emptyList just because it's more readable.

link|improve this answer
feedback

I would go with Collections.emptyList() if the returned list is not being modified in any way (as the list is immutable), otherwise I would go with option 2.

The benifit of Collections.emptyList() is that the same static instance is returned each time and so there is not instance creation occurring for each call.

link|improve this answer
feedback

Starting with Java 5.0 you can specify the type of element in the container:

Collections.<Foo>emptyList()

I concur with the other responses that for cases where you want to return an empty list that stays empty, you should use this approach.

link|improve this answer
feedback

Use Collections.emptyList() if you want to make sure that the returned list is never modified. This is what is returned on calling emptyList():

/**
 * The empty list (immutable). 
 */
public static final List EMPTY_LIST = new EmptyList();
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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