gpt4 book ai didi

java - 如何获取调用方法的返回值?

转载 作者:搜寻专家 更新时间:2023-10-30 21:19:31 26 4
gpt4 key购买 nike

我正在尝试在 Java 中实现某种反射。我有:

class P {
double t(double x) {
return x*x;
}

double f(String name, double x) {
Method method;
Class<?> enclosingClass = getClass().getEnclosingClass();
if (enclosingClass != null) {
method = enclosingClass.getDeclaredMethod(name, x);
try {
method.invoke(this, x);
} catch (Exception e) {
e.printStackTrace();
}

}
}

class o extends P {
double c() {
return f("t", 5);
}
}

如何从 new o().c() 中获取值?

最佳答案

放置虚拟类供您引用,您可以相应地更改您的代码-

import java.lang.reflect.Method;

public class Dummy {

public static void main(String[] args) throws Exception {
System.out.println(new Dummy().f("t", 5));
}

double t(Double x) {
return x * x;
}

double f(String name, double x) throws Exception {
double d = -1;
Method method;
Class<?> enclosingClass = getClass();
if (enclosingClass != null) {
method = enclosingClass.getDeclaredMethod(name, Double.class);
try {
Object value = method.invoke(this, x);
d = (Double) value;
} catch (Exception e) {
e.printStackTrace();
}
}

return d;
}
}

只需运行这个类。

关于java - 如何获取调用方法的返回值?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15697217/

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