gpt4 book ai didi

Java - Action 监听器 : Get components from parent

转载 作者:行者123 更新时间:2023-12-01 13:22:10 25 4
gpt4 key购买 nike

到目前为止,我发现在激 Activity 作事件时获取其他组件信息的唯一方法是执行以下操作:

((Swing Component)ActionEvent.getSource()).getParent().getComponent(---).method();

虽然它可以工作,但它并不那么实用或可读,更不用说如果我在父组件中移动组件,很可能会停止正常工作。

那么解决这个问题的最佳方法是什么?我应该一开始就使用 Action 监听器吗?或者是否有更好的类/设计用于此目的?

最佳答案

将监听器设为内部类,直接访问组件:

private JLabel label;
private JButton button;

MyPanel() {
...
button.addActionListener(new ActionListener() {
@Override
public void actionPerformed(ActionEvent e) {
label.setText("button clicked");
}
}
}

http://docs.oracle.com/javase/tutorial/uiswing/events/intro.html

内部类的发明主要是出于这个特定的原因。

关于Java - Action 监听器 : Get components from parent,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21961778/

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