When i call a method defined in java as `<T ext...
# announcements
s
When i call a method defined in java as
<T extends View> T findViewById(int id)
, why do i need to specify
<View>
? Shouldn’t the compiler default the type to
View
if I don’t specify something more concrete?