我有一个关于单击按钮执行其他按钮操作的问题.三个按钮的一些示例代码:
JButton a = new JButton("a");
a.addActionListener(new ActionListener() {
public void actionPerformed(ActionEvent e) {
// Action of a is Here
}
});
JButton b = new JButton("b");
b.addActionListener(new ActionListener() {
public void actionPerformed(ActionEvent e) {
// Action of b is Here
}
});
那些应该聚集在一起,如:
JButton c = new JButton("c");
c.addActionListener(new ActionListener() {
public void actionPerformed(ActionEvent e) {
// Action of c is Here
// Action of a
// Action of b
}
});
在上面的例子中,我有三个按钮a,b,c有自己的动作;但正如你所看到的,C还必须运行A和B的动作.有什么好方法可以解决这个问题?