Skip to content
Advertisement

How to capture and propagate a wildcard type argument?

I have a couple of classes having identical methods, except with respect to certain parameter types:

JavaScript

Now I’m trying to have a main class that stores a mixed list of these class objects and for each of these instances, passes info between its two methods:

JavaScript

The List<ICls<?>> and Map<String, ?> statements are OK. However, the map.get(key) throws an IDE error:

JavaScript

Hovering the mouse cursor over the offending statement shows:

JavaScript

Assuming that I can’t/don’t want to change the generic type T to Object, and don’t want to change the architecture either, what can I do to make the code here compile?

I’ve tried changing the signature of doSomething so that it accepts the entire Map<String, T> and call it like so, with no luck either:

JavaScript

Advertisement

Answer

This compiles for me:

JavaScript

It makes clear the relationship between the map and the cls.

In the original context, because the type of the List is ICls<?> we can’t get that relationship, but once we get a single ICls we can introduce a type variable T which allows us to express the relationship between getSomething and doSomething.

User contributions licensed under: CC BY-SA
2 People found this is helpful
Advertisement