栏目分类:
子分类:
返回
名师互学网用户登录
快速导航关闭
当前搜索
当前分类
子分类
实用工具
热门搜索
名师互学网 > IT > 面试经验 > 面试问答

从ActionListener获取按钮名称?

面试问答 更新时间: 发布时间: IT归档 最新发布 模块sitemap 名妆网 法律咨询 聚返吧 英语巴士网 伯小乐 网商动力

从ActionListener获取按钮名称?

保留按钮中的参考

Map

String letters[] = {"0", "a", "b", "c", "d", "e", "f"};JButton btn;int count = 0;HashMap<String,JButton> buttonCache = new HashMap<String,JButton>();for (int f=1; f < 7;f++){    for (int i=1; i < 7;i++){        btn = new JButton(letters[f]+i, cup);        mainGameWindow.add(btn[i]);        btn.addActionListener(this);        String stringCommand = Integer.toString(randomArrayNum());        btn.setActionCommand(stringCommand);        buttonMap.put(stringCommand,btn);        count++;        if(count == 18){ generateArray();        }    }}

然后,在您的中

ActionListener
,从命令中获取按钮:

public void actionPerformed(ActionEvent e) {    String command = ((JButton) e.getSource()).getActionCommand();    JButton button = buttonCache.get(command);    if (null != button) {        // do something with the button    }}

编辑

五年后重新审视此答案,我不知道为什么我建议使用

HashMap
:P

这段代码做的完全一样,没有第三方

Map

String letters[] = {"0", "a", "b", "c", "d", "e", "f"};int count = 0;for (int f=1; f < 7;f++){    for (int i=1; i < 7;i++) {        String stringCommand = Integer.toString(randomArrayNum());        Button btn = new JButton(letters[f]+i, cup);        btn.setActionCommand(stringCommand);        btn.addActionListener(this);        mainGameWindow.add(btn[i]);        // NOTE : I have no idea what this is for...        count++;        if(count == 18){ generateArray();        }    }}

ActionListener

public void actionPerformed(ActionEvent e) {    JButton button = (JButton) e.getSource();    String command = button.getActionCommand();    // do something with the button    // the command may help identifying the button...}


转载请注明:文章转载自 www.mshxw.com
本文地址:https://www.mshxw.com/it/439039.html
我们一直用心在做
关于我们 文章归档 网站地图 联系我们

版权所有 (c)2021-2022 MSHXW.COM

ICP备案号:晋ICP备2021003244-6号