gpt4 book ai didi

java - 您能否创建一个可以使用参数结果来指定要更改的值的函数?

转载 作者:行者123 更新时间:2023-11-30 05:21:27 26 4
gpt4 key购买 nike

编辑:有些人(可能很多人)没有明白我的要求。我将粘贴完整的代码并尝试更好地解释它。

import com.sun.javafx.geom.Shape;
import javafx.scene.Group;

import java.lang.reflect.Parameter;

public abstract class Part {
double x;
double y;
double width;
double height;
double angle;

public Part(double x, double y, double width, double height, double angle) {
this.x = x;
this.y = y;
this.width = width;
this.height = height;
this.angle = angle;
Group group = new Group();
group.getChildren().addAll();
}

abstract void createPart(Shape shape);
abstract void addPart(Group group);
public void setPartProperties(Parameter... properties) {
//This can set any variable of any type to any value based on some parameters I don't understand. FOR EXAMPLE setPartProperties({x, 100}, {y, 50})
//I don't know what the notation would look like so don't get caught up in the whole {variable, value} format as an input, I just made that up.
//This is the part I need help with. BTW the parameter class was an arbitrary choice for the variable type,
// IK it won't work since I want to be able to change any variable of any type to any value.
}

}

*阅读 setPartProperties() 方法中的注释。好吧,让我分解一下这段代码。它是主类,大量子类将从其扩展。假设创建一个扩展 Part 的类 Wheel。它看起来像这样

import com.sun.javafx.geom.Shape;
import javafx.scene.Group;

import java.lang.reflect.Parameter;

public class Wheel extends Part {

public Part(double x, double y, double width, double height, double angle) {
super(x, y, width, height, angle);
setPartProperties({x, 100}, {y, 100}, {width, 50}, {height, 40}, {angle, 0})

}

@Override
public void createPart(Shape shape) {
//Make some JavaFX circle object, IDK it doesn't matter
}
@Override
public void addPart(Group group) {
//Add that object to a JavaFX group; also doesn't matter
}

}

好的,所以这段代码只是 Part 类的扩展,忽略其他所有内容,使用其 setPartProperties() 方法。我必须强调,方法参数的输入格式并不重要,我只是当场编造的。最终结果不必是 {variable, value} 即可向方法添加参数。我只是希望能够指定一个值以及将其应用到哪个变量。作为方法的参数(它就是这样做的)。

编辑:虽然我不知道该方法输入的最终语法是什么,但我确实希望它是一个 Pair 系统。例如,如果我使用此方法,其参数将如下所示。

setPartProperties((x, 100), (y, 100));

public void setPartProperties() {
//Stuff
}

我想让一个方法完成所有工作,这样你就可以随时添加任何你想要的东西。回到我的模拟器,假设我想稍后更改零件的角度。我可以写 setPartProperties((angle, -30));我不想每次都创建一个新的 HashMap。相反,我想要一个 for 循环在方法内生成一个本地 HashMap,然后获取其值并将其应用到相应的变量。我知道执行此操作的唯一方法是

public void thing(double... input) {
for (double i: input) {
//do somestuff
}
}

此方法的问题在于它对每个 double 值都进行了填充。我希望每个新 i 有两个值。我需要用有两个输入的 someElse... 替换 double...。

最佳答案

您可以使用反射来实现您想要的,正如 Sweeper 在他们的评论中提到的那样。如果您只想为每个新子类使用静态值,则可以在创建它们时使用手动硬编码设置它们。但是,如果您想动态设置这些字段(从某处获取它们),那么您可以使用反射。满足您好奇心的一个示例代码是:

import java.lang.reflect.Field;
import java.util.HashMap;
import java.util.Map;

public class TestReflection {
double x;
double y;
double width;
double height;
double angle;
public TestReflection() {
}
public void setPartProperties(Map<String, Double> fieldValueMap) throws NoSuchFieldException, IllegalAccessException {
Class<TestReflection> clazz = TestReflection.class;
for(Map.Entry<String, Double> entry : fieldValueMap.entrySet()) {
Field field = clazz.getDeclaredField(entry.getKey());
field.set(this, entry.getValue());
}
}
public static void main(String[] args) throws NoSuchFieldException, IllegalAccessException {
Map<String, Double> fieldAndValues = new HashMap<>();
fieldAndValues.put("x", 10.0);
fieldAndValues.put("y", 20.0);
fieldAndValues.put("width", 30.0);
fieldAndValues.put("height", 40.0);
fieldAndValues.put("angle", 50.0);
TestReflection testReflection = new TestReflection();
testReflection.setPartProperties(fieldAndValues);
System.out.println(testReflection);
}

@Override
public String toString() {
return "TestReflection{" +
"x=" + x +
", y=" + y +
", width=" + width +
", height=" + height +
", angle=" + angle +
'}';
}
}

我假设您想要类似于我的示例中的 setPartProperties 方法,其中它采用字段名称和值的映射,并且应该在相应字段上设置值。其余代码和主要方法仅作为示例。你可以根据你的需要写一些东西。如果运行此类,您将得到如下输出:

TestReflection{x=10.0, y=20.0, width=30.0, height=40.0, angle=50.0}

每个字段都是根据名称通过反射设置的。即使这不能解决您的问题,我也愿意。

关于java - 您能否创建一个可以使用参数结果来指定要更改的值的函数?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/59525710/

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