使用操作更新另一个类中的实例变量

问题描述 投票:0回答:1

所以我试图使用Key Bindings,动作图的put()方法接受一个动作和一个字符串参数。

/* all declartion is above
     * the class extends JPanel so the keyword "this" can be used
     * xlist is an ArrayList of Integers
     * keyActionRight ka = new keyActionRight(x); is declared above, where x is a global int
     * this is part of the keyBindingsTest class */

    xlist.add(x); 
    im = this.getInputMap(JComponent.WHEN_IN_FOCUSED_WINDOW);
    im.put(KeyStroke.getKeyStroke(KeyEvent.VK_RIGHT, 0, false), "right");

    am = this.getActionMap();
    am.put("right", ka);
    System.out.println(ka.getNextX(xlist)); //Any way for this to be called just like if I printed in the actionPerformed of the action class?

这是keyActionRight类。当您扩展AbstractAction时,当您获得操作时,这是一个操作:

public class keyActionRight extends 
AbstractAction
{
    private int x; 
    private ArrayList<Integer> xlist;
    public keyActionRight(int x)
    {
        this.x = x;
        xlist = new ArrayList<Integer>(); 
        xlist.add(x);  
    }

    public int getNextX(ArrayList<Integer> x)
    {
        x = xlist; 
        return x.get(0);
    }

    public void actionPerformed(ActionEvent e)
    {
        if(x != 440)
        {
            x++; //this incrementing works fine
            xlist.add(0, x); //this updates xlist fine
        }  
    }
}

目标本质上只是在按下或按住右箭头键时更新keyBindingsTest类中的实例变量x。当我这样做时,Action类中的x正在更新(我将其打印出来并且有效)。有人指出它为什么不更新 - 它只在print语句中被调用一次。我想知道是否有办法让这项工作与一个单独的类进行操作,或者我是否需要采取不同的方法。

我可以尝试在keyBindingsTest类中创建Action,但是在我上次尝试时,这给了我奇怪的错误。任何帮助,将不胜感激。

谢谢。

java swing action key-bindings
1个回答
1
投票

你有错误的假设:

xlist.add(x); 
im = this.getInputMap(JComponent.WHEN_IN_FOCUSED_WINDOW);
im.put(KeyStroke.getKeyStroke(KeyEvent.VK_RIGHT, 0, false), "right");

am = this.getActionMap();
am.put("right", ka);

// **** the comment below is incorrect ****
//only prints out zero - should print out ascending values of x as I hold down the right arrow key
System.out.println(ka.getNextX(xlist));  

你所做的假设是在调用Key Bindings动作时调用println,但事实并非如此。 println在创建键绑定时只调用一次。重复调用的唯一代码是Action的actionPerformed方法中的代码,该方法是响应事件而调用的代码。

如果您希望多次调用代码并响应事件,则必须将其放在事件侦听器中,而不是侦听器的创建代码中。

© www.soinside.com 2019 - 2024. All rights reserved.