プリミティブ型の場合: int、double、short など...
与えられた:
String typeName = "double";
どうすれば入手できdouble.class
ますか?
通常のクラスでは、次のことができます。
String typeName = "java.lang.Integer"
Class<?> clazz = Class.forName(typeName);
// Class.forName(typeName) returns Double.class