0

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

这是在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()什么?

4

1 回答 1

3

很好的解决方案

不要像那样做很多变量。

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

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。

于 2012-07-19T12:23:03.863 回答