如何从字符串数组获取原始值的类列表

时间:2019-06-23 10:23:52

标签: java arrays class reflection

我有一个String列表,包含不同原始类型的值,如string:

String[] types = {"String","int"};

我需要获取类的数组:

Class[] classList;
classList[0] = types[0].Class // String.Class
classList[1] = types[1].Class // int.class

如何获取“ String”和“ int”的类

我尝试过:

Class<?>[] params = new Class[3];
for(int i = 0 ; i < typesSet.length ; i++){
params[i] = Class.forName(typesSet[i]);
}

0 个答案:

没有答案