gpt4 book ai didi

java - 从匿名类中获取参数

转载 作者:行者123 更新时间:2023-11-30 08:56:55 27 4
gpt4 key购买 nike

是否可以从匿名类中获取最终参数值?使用反射还是其他?

这个例子当然都是编出来的:

final String x = "Param1";
final String y = "Param2";
ITest<String> iTest = new ITest<String>() {

@Override
public String execute() {
return t.testMethod(x, y);
}

};
// Get values or x and y from iTest here?

最佳答案

所以这是你的代码:

ITest<String> iTest = new ITest<String>() {

@Override
public String execute() {
return testMethod(x, y);
}

};

尝试像这样定义 ITest:

public class ITest {
int x;
int y;

public testMethod(int x, int y) {
this.x = x; this.y = y;
}

// execute somewhere
}

关于java - 从匿名类中获取参数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28376912/

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