What's does Enumeration<?> mean?
Is there any way to represent the general generic?
|
What's does Is there any way to represent the general generic?
| ||||
|
feedback
|
|
The
However, being unbounded, the nextElement() method of an
| |||
|
feedback
|
|
The question mark indicates that it stands for all types. Here's an example:
| |||
|
feedback
|
|
While it's tempting to think of the
But it doesn't. That's because the type isn't known in this code, so the compiler can't tell whether you should be allowed to add anything to it. | |||
|
feedback
|
|
? is the wildcard character. You can represent it as ? extends object or something of the sort which has the same effect. From my understanding wildcards are not exactly an art so far in java they need to be somewhat bounded *but dont quote me on that | |||
|
feedback
|