我有以下類:爪哇 - 如何通過反射檢查數組長度(場類)
public class GeneralClass
{
public int x;
public int[] arr = new int[3];
}
與以下邏輯:
public void loadClass(Class cls) {
Field[] fields = cls.getDeclaredFields();
for (Field field : fields) {
if (field.getType().isArray()) {
// How can I print the array length ?
}
}
}
我怎麼能知道什麼是數組的大小(長度)?
七個答案,只有兩個能夠理解問題提出的問題,只有一個提供瞭解決方案。榮譽。 – 2014-11-20 19:40:26
@DavidConrad可怕,不是嗎? – Seelenvirtuose 2014-11-20 19:43:06