gpt4 book ai didi

Java 反射没有按预期工作

转载 作者:塔克拉玛干 更新时间:2023-11-01 22:38:38 27 4
gpt4 key购买 nike

我只是写这段代码来测试一些东西,以便更好地理解反射。

这是 ReflectionTestMain 类:

import java.lang.reflect.Field;
import java.lang.reflect.InvocationTargetException;
import java.lang.reflect.Method;

public class ReflectionTestMain {
public static void main(String[] args) {
try {
ReflectionTest rt = new ReflectionTest();
Class<ReflectionTest> c = ReflectionTest.class;
Field f = c.getDeclaredField("value");
f.setAccessible(true);
f.set(rt, "text");
Method m = c.getDeclaredMethod("getValue");
m.setAccessible(true);
String value = (String) m.invoke(rt);
System.out.println(value);
} catch (NoSuchFieldException | SecurityException | IllegalArgumentException | IllegalAccessException | NoSuchMethodException | InvocationTargetException e) {
e.printStackTrace();
}
}
}

这是 ReflectionTest 类。

public class ReflectionTest {
private final String value = "test";

private String getValue() {
return value;
}
}

此代码打印测试,但我希望它打印文本。这不起作用的原因是什么?我该如何解决?

最佳答案

虽然变量已正确更新,但它不会传播到 getValue() 方法。

这是因为编译器为你优化了程序。

因为编译器知道变量 value 没有改变,所以它编译它以直接内联访问字符串池,而不是通过变量。这可以通过在类文件上运行 java -p

来查看

这可以通过为字符串常量使用初始化 block 或构造函数来解决,或者使语句更复杂以“愚弄”编译器。

class ReflectionTest {


// Use either
private final String value;
{
value = "test";
}
// Or
private final String value;
public ReflectionTest () {
value = "test";
}
// Or
private final String value = Function.identity().apply("test");
// Or

// Do not replace with + as the compiler is too smart
private final String value = "test".concat("");
// Depending on your required performance/codestyling analyses

private String getValue() {
return value;
}

}

关于Java 反射没有按预期工作,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/49296222/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com