I was just looking at Guava's ImmutableList and I noticed that the of() method was overloaded 12 times.

It looks to me that all they needed was:

static <E> ImmutableList<E> of();
static <E> ImmutableList<E> of(E element); // not even necessary
static <E> ImmutableList<E> of(E... elements);

What's the reason for having so many similar variations?

link|improve this question

4  
And they all pass their parameters to an internal varargs method anyway...huh. I'm going to have to raise an eyebrow at this one. Hmm, the source has a comment "These go up to eleven. After that, you just get the varargs form, and whatever warnings might come along with it. :(". I'm not sure what warnings it's referring to, though. – Tim Stone Sep 17 '10 at 18:22
@Tim, this would probably make a good answer, worth at least and upvote, and probably the accepted answer. – jjnguy Sep 17 '10 at 18:34
4  
+1 for Google for going up to eleven! – romacafe Sep 17 '10 at 18:54
@Justin Thanks, I do need to get out of the habit of commenting verbosely instead of answering and then adding additional information, heh. At any rate, I think ColinD has it covered now, so I'll leave it at that. – Tim Stone Sep 17 '10 at 18:55
1  
@romacafe I think Google got beat: svn.codehaus.org/groovy/trunk/groovy/groovy-core/src/main/org/… Though Groovy does this for performance reasons. It was recently discussed on Hack News ( news.ycombinator.com/item?id=1951803 ) – eneveu Dec 4 '10 at 12:32
show 3 more comments
feedback

2 Answers

up vote 23 down vote accepted

Varargs and generics do not play nicely together. Varargs methods can cause a warning with generic arguments, and the overloads prevent that warning except in the rare case that you want to add more than 11 items to the immutable list using of().

The comments in the source say:

These go up to eleven. After that, you just get the varargs form, and whatever warnings might come along with it. :(

Note that Java 7's @SafeVarargs annotation was added specifically to eliminate the need for this sort of thing. A single of(E...) method annotated with @SafeVarargs could be used and would not give warnings with generic arguments.

link|improve this answer
feedback

There's a good performance reason. Every invocation of a varargs method causes an array allocation and initialization. If you have somehow determined that e.g. 95% of the calls are with 3 or less arguments and only 5% with 4 or more, then overloading like this

public static <E> ImmutableList<E> of();
public static <E> ImmutableList<E> of( E e );
public static <E> ImmutableList<E> of( E e1, E e2 );
public static <E> ImmutableList<E> of( E e1, E e2, E e3 );
public static <E> ImmutableList<E> of( E e1, E e2, E e3, E... es );

leads to a nice performance boost in 95% of the cases. Differently put, the average case performance goes up.

link|improve this answer
Thanks for the extra info. – jjnguy Sep 16 '11 at 12:56
feedback

Your Answer

 
or
required, but never shown

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