gpt4 book ai didi

java - 如何使用户输入与变量相关?

转载 作者:行者123 更新时间:2023-12-02 00:18:04 26 4
gpt4 key购买 nike

我不知道如何准确地表达这个问题,但这就是我想要实现的目标(我正在使用堆栈实现汉诺塔插图:

这是在 main() 函数内部:

System.out.println("Type the source pole number and the destination pole number");
int a = reader.nextInt();
int b = reader.nextInt();
boolean move = moveDics(a, b);

这些是代表 3 个极点的堆栈:

    Stack<Integer> pole1 = new Stack<Integer>();
Stack<Integer> pole2 = new Stack<Integer>();
Stack<Integer> pole3 = new Stack<Integer>();

我想根据用户输入更改堆栈,为此,我需要与变量 pole1、pole2、pole3 相关(以执行任何操作,例如 pole1.pop() )。

这是我的问题:除了多个 if() 语句或 switch case 语句之外,如何使用用户输入(整数)来与极点相关?类似于 pole + "x".pop()

最佳答案

好的解决方案

不要创建太多这样的变量。

您可以将它们全部放入一个数组中:

Stack[] poles = new Stack[3];
for (int i=0; i<poles.length; i++) poles[i] = new Stack<Integer>();

然后您可以使用poles[yourInteger]访问您的杆。

一个变体(基于杰弗里的评论):

List<Stack<Integer>> poles = new ArrayList<Stack<Integer>>();
for (int i=0; i<poles.size(); i++) poles[i] = new Stack<Integer>();

然后您可以使用poles.get(yourInteger)访问您的杆。

请注意,一旦您开始在这些杆上做更复杂的事情,您就必须考虑将它们嵌入到类中。我个人尽量避免使用集合的集合或集合的数组,因为它们往往会令人困惑。

不是很好的解决方案

您可以使用开关:

public Stack<Integer> getPole(int i) {
switch(myInteger) {
case 1:
return pole1;
case 2:
return pole2;
case 3:
return pole3
}
return null;
}

使用它

Stack<Integer> pole = getPole(yourInteger);

疯狂的解决方案

如果您愿意,您可以使用反射按名称访问变量。

为此,您首先要获取类的 Field 实例:

Field stackField = MyClass.class.getField("pole"+myInteger);

然后你必须获取该字段值的方法,并调用它们。这会很慢,有很多 LOC 和很多 try/catch。

关于java - 如何使用户输入与变量相关?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11560768/

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