Is there a difference between Enumeration<? extends ZipEntry> and Enumeration<ZipEntry>? If so, what is the difference?
|
feedback
|
|
There's no practical difference in terms of what you can do when you've got one of them, because the type parameter is only used in an "output" position. On the other hand, there's a big difference in terms of what you can use as one of them. Suppose you had an It's more interesting when you've got a type which uses the type parameter in both input and output positions -
For more details, read: | |||||
feedback
|
|
Yes, straight from one of the sun generics tutorials:
| |||||||
feedback
|
|
Now you've just gone and reminded me of something I wish we had over in the C# world. Other than the links provided, there's some good links about C# and Java in relation to this topic in the answers to this question: http://stackoverflow.com/questions/110121 A selection of which are:
| |||
|
feedback
|