If I have a class named Widget then I can create a new one with the following code (more or less):
Class<?> widgetClass = Class.forName("Widget");
Widget widget = (Widget)widgetClass.newInstance();
But what if I have an interface, Fruit, and several concrete implementations (such as Apple, Orange and Kiwi)? If I try:
Class<?> fruitClass = Class.forName("Apple");
Fruit fruit = (Fruit)fruitClass.newInstance();
I get an error:
Fruit cannot be resolved to a type.
If I remove the explicit casting like so:
Fruit fruit = fruitClass.newInstance();
I get a different error:
Type mismatch: cannot convert from capture#2-of ? to Fruit.
So how do I use a String to instantiate the right Fruit concretion I want?