ฉันต้องการรับค่าของฟิลด์โดยใช้การสะท้อน มันเกิดขึ้นจนฉันไม่แน่ใจเสมอว่าประเภทข้อมูลของฟิลด์คืออะไร สำหรับสิ่งนั้นและเพื่อหลีกเลี่ยงการทำซ้ำรหัสบางอย่างฉันได้สร้างวิธีการต่อไปนี้:
@SuppressWarnings("unchecked")
private static <T> T getValueByReflection(VarInfo var, Class<?> classUnderTest, Object runtimeInstance) throws Throwable {
Field f = classUnderTest.getDeclaredField(processFieldName(var));
f.setAccessible(true);
T value = (T) f.get(runtimeInstance);
return value;
}
และใช้วิธีนี้เช่น:
Long value1 = getValueByReflection(inv.var1(), classUnderTest, runtimeInstance);
หรือ
Double[] value2 = getValueByReflection(inv.var2(), classUnderTest, runtimeInstance);
ปัญหาคือดูเหมือนว่าฉันไม่สามารถส่งInteger
ไปที่Long
:
java.lang.ClassCastException: java.lang.Integer cannot be cast to java.lang.Long
มีวิธีที่ดีกว่าในการบรรลุเป้าหมายนี้หรือไม่?
ฉันใช้ Java 1.6
Number[]
และวนซ้ำเพื่อสร้างอาร์เรย์ที่พิมพ์ได้อย่างเหมาะสมใช่ไหม