vote up 0 vote down star

Can Java nest generics? The following is giving me an error in Eclipse:

ArrayList<ArrayList<Integer>> numSetSet = ArrayList<ArrayList<Integer>>();

The error is:

Syntax error on token "(", Expression expected after this token

flag

69% accept rate
1  
Well now, there's an example of a terrible compiler error message! – Software Monkey Nov 4 at 4:14
Basic syntax FAIL. Back to driving school, Sonny! – Bombe Nov 4 at 6:54
Better do: List<List<Integer>> numSetSet = new ArrayList<List<Integer>>(); And if it's a set, why are you using lists? – starblue Nov 4 at 7:36

4 Answers

vote up 18 vote down check

You forgot the word new.

link|flag
WOW it is getting too late. thanks. – Rosarch Nov 4 at 3:19
vote up 7 vote down

That should be:

ArrayList<ArrayList<Integer>> numSetSet = new ArrayList<ArrayList<Integer>>();

Or even better:

List<List<Integer>> numListList = new ArrayList<List<Integer>>();
link|flag
Actually, you can't have nested Abstract types, apparently: List<ArrayList<Integer>> numSetSet = new ArrayList<ArrayList<Integer>>(); – Rosarch Nov 4 at 3:22
1  
@Rosarch: List<List<Integer>> numListList = new ArrayList<List<Integer>>(); compiles just fine on my machine. – Asaph Nov 4 at 3:28
The second solution may not be better. In the second solution any kind of list can be put in the main list which may not what you want. In fact you could put both ArrayList and LinkedList into the main list. It may not be a bad thing, but may not be what you want. – fastcodejava Nov 4 at 4:01
5  
@fastcodejava: That's exactly the point! Always code to an interface, not an implementation. That way you can swap out different implementations of the List interface easily without changing lots of code. – Asaph Nov 4 at 4:33
vote up 1 vote down

For those who come into this question via google, Yes Generics can be nested. And the other answers are good examples of doing so.

link|flag
vote up 1 vote down

And here are some slightly tricky technic about Java template programming, I doubt how many people have used this in Java before.
This is a way to avoid casting.

public static <T> T doSomething(String... args)

This is a way to limit your argument type using wildcard.

public void draw(List<? extends Shape> shape) {  
    // rest of the code is the same  
}

you can get more samples in SUN's web site:
http://java.sun.com/developer/technicalArticles/J2SE/generics/

link|flag

Your Answer

Get an OpenID
or

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