将整数转换为长整型

2022-08-31 08:20:20

我需要使用反射获取字段的值。碰巧的是,我并不总是确定字段的数据类型是什么。为此,为了避免一些代码重复,我创建了以下方法:

@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);

问题是我似乎不能投射到:IntegerLong

java.lang.ClassCastException: java.lang.Integer cannot be cast to java.lang.Long

有没有更好的方法来实现这一目标?

我使用的是 Java 1.6。


答案 1

只是:

Integer i = 7;
Long l = new Long(i);

答案 2

不可以,您不能转换为 ,即使您可以从 转换为 。对于已知为数字的单个值,并且您希望获取长整型值,可以使用:IntegerLongintlong

Number tmp = getValueByReflection(inv.var1(), classUnderTest, runtimeInstance);
Long value1 = tmp.longValue();

对于数组,它将更加棘手...