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
|
|
Can Java nest generics? The following is giving me an error in Eclipse:
The error is:
|
||||||||
|
|
|
You forgot the word |
||
|
|
|
That should be:
Or even better:
|
||||||||||||
|
|
|
For those who come into this question via google, Yes Generics can be nested. And the other answers are good examples of doing so. |
||
|
|
|
|
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 limit your argument type using wildcard.
you can get more samples in SUN's web site: |
||
|
|