Reputation: 8231
Is there any difference between :
Class<?>
and Class<? extends Object>
?
Thanks
Upvotes: 4
Views: 481
Reputation: 21
The same, 'cos every class extends Object.
It's analogous to saying
class MyClass
and
class MyClass extends Object
are the same thing.
Upvotes: 2