What's the difference between
? extends Stream<? extends R>
and
Stream<? extends R>
Is <R> Stream<R> flatMap(Function<? super T,? extends Stream<? extends R>> mapper)
same as <R> Stream<R> flatMap(Function<? super T, Stream<? extends R>> mapper)
.
Could you give some examples?
Short answer:
? extends SomeType
is very different thanSomeType
.Longer answer:
The use of
Stream<extends R>
asSomeType
confuses the example. To answer the question, consider a simpler comparison, for example:? extends Integer
Integer
The first observation is that
? extends Integer
as a type expression can be used only within generic declarations. On the other hand,Integer
can be used in many more places.Here are some code examples to help show the difference: