I've noticed JLS talks of 5.1.10 Capture Conversion, but I fail to understand what they are.
Can anyone explain them to me/give examples?
|
I've noticed JLS talks of 5.1.10 Capture Conversion, but I fail to understand what they are. Can anyone explain them to me/give examples?
| |||||
feedback
|
|
Capture conversion was designed to make wildcards (in generics), Suppose we have the following class:
and somewhere on our code we have,
Because But if we had,
The compiler would give us an error of something like This is because the compiler tries to do the type safety check on From here (Java theory and practice: Going wild with generics, Part 1), it clearly states:
Hope this helps you. | |||||||
feedback
|
|
A parameterized type involving wildcard type arguments is really a union type. For example
In 2 cases, instead of using (1) http://java.sun.com/docs/books/jls/third_edition/html/expressions.html To narrow the type of an expression. If an expression's type is Capture conversion is applied to each expression individually; this leads to some dumb results:
(2) http://java.sun.com/docs/books/jls/third_edition/html/typesValues.html#4.10.2 In subtype checking
So in effect, we are checking the captured version of type | ||||
|
feedback
|