I have an interface to convert object to string:
public interface Converter<T> {
String asString(T object);
}
And a map to store all available converters:
Map<Class<?>, Converter<?>> converterMap;
Now I have a list of heterogeneous data to convert like this:
List<?> data = fetchData();
List<String> stringData = new ArrayList<>(data.size());
for (Object datum : data) {
stringData.add(convertrMap.get(datum.getClass()).asString(datum));
}
But this code doesn't compile:
error: method asString in interface Converter<T> cannot be applied to given types;
stringData.add(converterMap.get(datum.getClass()).asString(datum));
required: CAP#1
found: Object
reason: actual argument Object cannot be converted to CAP#1 by method invocation conversion
where T is a type-variable:
T extends Object declared in interface Converter
where CAP#1 is a fresh type-variable:
CAP#1 extends Object from capture of ?
How should I change the code?

asString(Object object)instead of usingConverter<T>and then usingConverter<?>it makes use of generics redundant. – Shivam Kalra Dec 25 '12 at 2:58asStringmethod unsafe, e.g. I can safely useConverter<Date> dateConverter = (Converter<Date>) converterMap.get(Date.class). – Zhao Yi Dec 25 '12 at 3:02Converter<?> c = new Converter<String>; c.asString("abc");is illegal because?is unknown at the runtime therefore it only expect some subtype of this unknown type. – Shivam Kalra Dec 25 '12 at 3:20