我最近偶然发现了使用 Java 反射更改私有静态最终字段并测试了 polygenelubricants 的EverythingIsTrue
类,工作正常,确实可以System.out.format("Everything is %s", false);
打印。Everything is true
但是当我将代码更改为
public class EverythingIsTrue {
public static final boolean FALSE = false;
static void setFinalStatic(Field field, Object newValue) throws Exception {
field.setAccessible(true);
Field modifiersField = Field.class.getDeclaredField("modifiers");
modifiersField.setAccessible(true);
modifiersField.setInt(field, field.getModifiers() & ~Modifier.FINAL);
field.set(null, newValue);
}
public static void main(String[] args) throws Exception {
setFinalStatic(EverythingIsTrue.class.getField("FALSE"), true);
System.out.format("Everything is %s", FALSE);
}
}
它打印
Everything is false
有人知道为什么吗?setFinalStatic 是否真的有效?